load requirements

# load libraries
library(ggplot2)
library(dplyr)
## 
## Attaching package: 'dplyr'
## The following objects are masked from 'package:stats':
## 
##     filter, lag
## The following objects are masked from 'package:base':
## 
##     intersect, setdiff, setequal, union
library(Maaslin2)
library(tidyverse)
## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
## ✔ forcats   1.0.0     ✔ stringr   1.5.0
## ✔ lubridate 1.9.2     ✔ tibble    3.1.8
## ✔ purrr     1.0.1     ✔ tidyr     1.3.0
## ✔ readr     2.1.4
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ dplyr::lag()    masks stats::lag()
## ℹ Use the ]8;;http://conflicted.r-lib.org/conflicted package]8;; to force all conflicts to become errors
library(UpSetR)
library(stringr)
library(circlize)
## ========================================
## circlize version 0.4.15
## CRAN page: https://cran.r-project.org/package=circlize
## Github page: https://github.com/jokergoo/circlize
## Documentation: https://jokergoo.github.io/circlize_book/book/
## 
## If you use it in published research, please cite:
## Gu, Z. circlize implements and enhances circular visualization
##   in R. Bioinformatics 2014.
## 
## This message can be suppressed by:
##   suppressPackageStartupMessages(library(circlize))
## ========================================
library(ComplexHeatmap)
## Loading required package: grid
## ========================================
## ComplexHeatmap version 2.14.0
## Bioconductor page: http://bioconductor.org/packages/ComplexHeatmap/
## Github page: https://github.com/jokergoo/ComplexHeatmap
## Documentation: http://jokergoo.github.io/ComplexHeatmap-reference
## 
## If you use it in published research, please cite either one:
## - Gu, Z. Complex Heatmap Visualization. iMeta 2022.
## - Gu, Z. Complex heatmaps reveal patterns and correlations in multidimensional 
##     genomic data. Bioinformatics 2016.
## 
## 
## The new InteractiveComplexHeatmap package can directly export static 
## complex heatmaps into an interactive Shiny app with zero effort. Have a try!
## 
## This message can be suppressed by:
##   suppressPackageStartupMessages(library(ComplexHeatmap))
## ========================================
library(survival)
library(survminer)
## Loading required package: ggpubr
## 
## Attaching package: 'survminer'
## 
## The following object is masked from 'package:survival':
## 
##     myeloma
library(ggthemes)
library(ggsci)

load data

df_meta_ACC <- read.csv("../Tables/metadata_77_ACC.csv")
df_clinical <- read.csv("../00.Data/ACC_clinic.csv")

# load microbial data from Poore's study
df_ACC_Voom_SNM <- read.csv("../Tables/Voom-SNM-ACC.csv", row.names = 1)
df_ACC_filter_likely_Voom_SNM  <- read.csv("../Tables/Voom-SNM-Filter-Likely-ACC.csv", row.names = 1)
df_ACC_filter_Plate_Center_Voom_SNM <- read.csv("../Tables/Voom-SNM-Filter-Plate_Center-ACC.csv", row.names = 1)
df_ACC_filter_putative_Voom_SNM <- read.csv("../Tables/Voom-SNM-Filter-Putative-ACC.csv", row.names = 1)
df_ACC_filter_stringent_Voom_SNM <- read.csv("../Tables/Voom-SNM-Filter-Stringent-ACC.csv", row.names = 1)

# load clustering results
df_cluster <- read.csv("../Tables/Unspervised_clustering.csv")
df_cluster <- df_cluster %>% dplyr::select(c("id", "Without_combined", "Likely_combined", "PC_combined", "Putative_combined"))
df_cluster[df_cluster==1] <- "MS1"
df_cluster[df_cluster==2] <- "MS2"
df_cluster_clinical <- merge(df_cluster, df_clinical, by="id", all.x = TRUE)

df_cluster_clinical <- df_cluster_clinical %>% remove_rownames() %>% column_to_rownames(var="id")
df_cluster_clinical$Without_combined <- factor(df_cluster_clinical$Without_combined, levels = c("MS1", "MS2"))
df_cluster_clinical$Likely_combined <- factor(df_cluster_clinical$Likely_combined, levels = c("MS1", "MS2"))
df_cluster_clinical$PC_combined <- factor(df_cluster_clinical$PC_combined, levels = c("MS1", "MS2"))
df_cluster_clinical$Putative_combined <- factor(df_cluster_clinical$Putative_combined, levels = c("MS1", "MS2"))

Differential genus between two groups using “Maaslin2”

function_Maaslin2 <- function(input_data, groups, out){
  input_data <- input_data[rownames(df_cluster_clinical), ]
  
  fit_data = Maaslin2(
    input_data = input_data, 
    input_metadata = df_cluster_clinical,
    min_prevalence = 0,
    normalization="NONE",
    transform="NONE",
    analysis_method = "LM",
    output = out, 
    fixed_effects = groups,
    cores = 6,
    random_effects = c("SEX", "Ethnicity_Race", "AGE", "Neoplasm_Status", "Clinical_Status_3_Mo_Post.Op", "Surgical_margin", "ATYPICAL_MITOTIC_FIGURES"))
  return(fit_data)
}

maaslin_without_group_without <- function_Maaslin2(df_ACC_Voom_SNM, "Without_combined", "Temp/without_group_without")
## [1] "Warning: Deleting existing log file: Temp/without_group_without/maaslin2.log"
## 2023-03-15 19:51:12 INFO::Writing function arguments to log file
## 2023-03-15 19:51:12 INFO::Verifying options selected are valid
## 2023-03-15 19:51:12 INFO::Determining format of input files
## 2023-03-15 19:51:12 INFO::Input format is data samples as rows and metadata samples as rows
## 2023-03-15 19:51:12 INFO::Formula for random effects: expr ~ (1 | SEX) + (1 | Ethnicity_Race) + (1 | AGE) + (1 | Neoplasm_Status) + (1 | Clinical_Status_3_Mo_Post.Op) + (1 | Surgical_margin) + (1 | ATYPICAL_MITOTIC_FIGURES)
## 2023-03-15 19:51:12 INFO::Formula for fixed effects: expr ~  Without_combined
## 2023-03-15 19:51:12 INFO::Filter data based on min abundance and min prevalence
## 2023-03-15 19:51:12 INFO::Total samples in data: 77
## 2023-03-15 19:51:12 INFO::Min samples required with min abundance for a feature not to be filtered: 0.000000
## 2023-03-15 19:51:12 INFO::Total filtered features: 80
## 2023-03-15 19:51:12 INFO::Filtered feature names from abundance and prevalence filtering: k__Viruses.f__Baculoviridae.g__Deltabaculovirus, k__Viruses.o__Caudovirales.f__Myoviridae.g__I3likevirus, k__Viruses.f__Anelloviridae.g__Gammatorquevirus, k__Viruses.f__Phycodnaviridae.g__Coccolithovirus, k__Viruses.f__Poxviridae.g__Capripoxvirus, k__Viruses.o__Mononegavirales.f__Nyamiviridae.g__Nyavirus, k__Viruses.f__Chrysoviridae.g__Chrysovirus, k__Viruses.g__Emaravirus, k__Viruses.f__Poxviridae.g__Yatapoxvirus, k__Viruses.f__Poxviridae.g__Orthopoxvirus, k__Viruses.o__Caudovirales.f__Siphoviridae.g__L5likevirus, k__Viruses.f__Hytrosaviridae.g__Muscavirus, k__Viruses.f__Closteroviridae.g__Crinivirus, k__Viruses.f__Iridoviridae.g__Iridovirus, k__Viruses.o__Caudovirales.f__Myoviridae.g__Cp220likevirus, k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Halobiforma, k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Fervidicella, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Wigglesworthia, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Cedecea, k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Cystobacteraceae.g__Hyalangium, k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Imtechella, k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Fibrisoma, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Nitrococcus, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Coxiellaceae.g__Diplorickettsia, k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Rikenellaceae.g__Rikenella, k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Caminibacter, k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Belliella, k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinosynnema, k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natronobacterium, k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Bifidobacteriales.f__Bifidobacteriaceae.g__Alloscardovia, k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Fusobacteriaceae.g__Cetobacterium, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Pelomonas, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Hahellaceae.g__Endozoicomonas, k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanolacinia, k__Archaea.p__Euryarchaeota.c__Methanococci.o__Methanococcales.f__Methanocaldococcaceae.g__Methanotorris, k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudophaeobacter, k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Hydrogenothermaceae.g__Persephonella, k__Archaea.p__Euryarchaeota.c__Methanococci.o__Methanococcales.f__Methanococcaceae.g__Methanothermococcus, k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pelagibaca, k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Raphidiopsis, k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Flaviramulus, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Blochmannia, k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Gorillibacterium, k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Methanomassiliicoccales.f__Methanomassiliicoccaceae.g__Candidatus_Methanoplasma, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Nevskia, k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Bhargavaea, k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halomicrobium, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Oleispira, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Brenneria, k__Bacteria.p__Chrysiogenetes.c__Chrysiogenetes.o__Chrysiogenales.f__Chrysiogenaceae.g__Chrysiogenes, k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Gottschalkia, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomicrobium, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Candidatus_Glomeribacter, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Moellerella, k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Microchaetaceae.g__Microchaete, k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Oxobacter, k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Aphanizomenon, k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Lebetimonas, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Morococcus, k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Ulvibacter, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Marinagarivorans, k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Solitalea, k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Thermoplasmatales.f__Ferroplasmaceae.g__Ferroplasma, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Gilvimarinus, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Dechloromonas, k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Gloeocapsa, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Azovibrio, k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Sulfuricurvum, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Leminorella, k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Geobacteraceae.g__Geoalkalibacter, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Sphaerotilus, k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Psychrobacillus, k__Bacteria.p__Thermotogae.c__Thermotogae.o__Petrotogales.g__Petrotoga, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Halieaceae.g__Haliea, k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Odoribacteraceae.g__Butyricimonas, k__Bacteria.p__Chloroflexi.c__Ardenticatenia.o__Ardenticatenales.f__Ardenticatenaceae.g__Ardenticatena, k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Beijerinckia, k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Aphanocapsa, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Thauera, k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Paucisalibacillus
## 2023-03-15 19:51:12 INFO::Total filtered features with variance filtering: 0
## 2023-03-15 19:51:12 INFO::Filtered feature names from variance filtering:
## 2023-03-15 19:51:12 INFO::Running selected normalization method: NONE
## 2023-03-15 19:51:12 INFO::Applying z-score to standardize continuous metadata
## 2023-03-15 19:51:12 INFO::Running selected transform method: NONE
## 2023-03-15 19:51:12 INFO::Running selected analysis method: LM
## 2023-03-15 19:51:12 INFO::Creating cluster of 6 R processes
## 2023-03-15 19:51:45 INFO::Counting total values for each feature
## 2023-03-15 19:51:45 WARNING::Deleting existing residuals file: Temp/without_group_without/residuals.rds
## 2023-03-15 19:51:45 INFO::Writing residuals to file Temp/without_group_without/residuals.rds
## 2023-03-15 19:51:45 WARNING::Deleting existing fitted file: Temp/without_group_without/fitted.rds
## 2023-03-15 19:51:45 INFO::Writing fitted values to file Temp/without_group_without/fitted.rds
## 2023-03-15 19:51:45 WARNING::Deleting existing ranef file: Temp/without_group_without/ranef.rds
## 2023-03-15 19:51:45 INFO::Writing extracted random effects to file Temp/without_group_without/ranef.rds
## 2023-03-15 19:51:45 INFO::Writing all results to file (ordered by increasing q-values): Temp/without_group_without/all_results.tsv
## 2023-03-15 19:51:45 INFO::Writing the significant results (those which are less than or equal to the threshold of 0.250000 ) to file (ordered by increasing q-values): Temp/without_group_without/significant_results.tsv
## 2023-03-15 19:51:45 INFO::Writing heatmap of significant results to file: Temp/without_group_without/heatmap.pdf
## Warning in xtfrm.data.frame(x): cannot xtfrm data frames
## [1] "There is not enough metadata in the associations to create a heatmap plot. Please review the associations in text output file."
## 2023-03-15 19:51:45 INFO::Writing association plots (one for each significant association) to output folder: Temp/without_group_without
## 2023-03-15 19:51:45 INFO::Plotting associations from most to least significant, grouped by metadata
## 2023-03-15 19:51:45 INFO::Plotting data for metadata number 1, Without_combined
## 2023-03-15 19:51:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Sfi1unalikevirus
## 2023-03-15 19:51:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__C2likevirus
## 2023-03-15 19:51:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Poxviridae.g__Parapoxvirus
## 2023-03-15 19:51:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Bicaudaviridae.g__Bicaudavirus
## 2023-03-15 19:51:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Circoviridae.g__Gyrovirus
## 2023-03-15 19:51:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Caulimoviridae.g__Badnavirus
## 2023-03-15 19:51:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Papillomaviridae.g__Betapapillomavirus
## 2023-03-15 19:51:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Bcep22likevirus
## 2023-03-15 19:51:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Ligamenvirales.f__Lipothrixviridae.g__Deltalipothrixvirus
## 2023-03-15 19:51:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Poxviridae.g__Cervidpoxvirus
## 2023-03-15 19:51:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Papillomaviridae.g__Mupapillomavirus
## 2023-03-15 19:51:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Lambdalikevirus
## 2023-03-15 19:51:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Papillomaviridae.g__Phipapillomavirus
## 2023-03-15 19:51:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Anelloviridae.g__Alphatorquevirus
## 2023-03-15 19:51:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.g__Pithovirus
## 2023-03-15 19:51:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Barnyardlikevirus
## 2023-03-15 19:51:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__P100virus
## 2023-03-15 19:51:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Reoviridae.g__Cypovirus
## 2023-03-15 19:51:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Iltovirus
## 2023-03-15 19:51:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Closteroviridae.g__Closterovirus
## 2023-03-15 19:51:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Viunalikevirus
## 2023-03-15 19:51:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Phicbklikevirus
## 2023-03-15 19:51:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Fuselloviridae.g__Alphafusellovirus
## 2023-03-15 19:51:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Retroviridae.g__Lentivirus
## 2023-03-15 19:51:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Luteoviridae.g__Polerovirus
## 2023-03-15 19:51:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Andromedalikevirus
## 2023-03-15 19:51:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Iridoviridae.g__Lymphocystivirus
## 2023-03-15 19:51:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Cheravirus
## 2023-03-15 19:51:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Ligamenvirales.f__Rudiviridae.g__Rudivirus
## 2023-03-15 19:51:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Closteroviridae.g__Ampelovirus
## 2023-03-15 19:51:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Papillomaviridae.g__Gammapapillomavirus
## 2023-03-15 19:51:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Bunyaviridae.g__Hantavirus
## 2023-03-15 19:51:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Herpesvirales.f__Malacoherpesviridae.g__Ostreavirus
## 2023-03-15 19:51:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Sfi21dtunalikevirus
## 2023-03-15 19:51:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Tymovirales.f__Betaflexiviridae.g__Foveavirus
## 2023-03-15 19:51:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.g__Bacilladnavirus
## 2023-03-15 19:51:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Skunalikevirus
## 2023-03-15 19:51:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Phikzlikevirus
## 2023-03-15 19:51:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Orthomyxoviridae.g__Influenzavirus_C
## 2023-03-15 19:51:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phi29likevirus
## 2023-03-15 19:51:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Caulimoviridae.g__Cavemovirus
## 2023-03-15 19:51:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Anelloviridae.g__Betatorquevirus
## 2023-03-15 19:51:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Caulimoviridae.g__Caulimovirus
## 2023-03-15 19:51:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Pbunalikevirus
## 2023-03-15 19:51:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Reoviridae.g__Phytoreovirus
## 2023-03-15 19:51:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Bromoviridae.g__Alfamovirus
## 2023-03-15 19:51:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Sp6likevirus
## 2023-03-15 19:51:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Sphaerolipoviridae.g__Gammasphaerolipovirus
## 2023-03-15 19:51:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Flaviviridae.g__Pegivirus
## 2023-03-15 19:51:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Mononegavirales.f__Rhabdoviridae.g__Vesiculovirus
## 2023-03-15 19:51:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Mononegavirales.f__Rhabdoviridae.g__Lyssavirus
## 2023-03-15 19:51:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Tymovirales.f__Alphaflexiviridae.g__Allexivirus
## 2023-03-15 19:51:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Parvoviridae.g__Ambidensovirus
## 2023-03-15 19:51:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Comovirus
## 2023-03-15 19:51:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.g__Polemovirus
## 2023-03-15 19:51:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Leviviridae.g__Levivirus
## 2023-03-15 19:51:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phieco32likevirus
## 2023-03-15 19:51:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Reoviridae.g__Aquareovirus
## 2023-03-15 19:51:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Bromoviridae.g__Ilarvirus
## 2023-03-15 19:51:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Narnaviridae.g__Narnavirus
## 2023-03-15 19:51:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Totiviridae.g__Totivirus
## 2023-03-15 19:51:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Chilikevirus
## 2023-03-15 19:51:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Potyviridae.g__Tritimovirus
## 2023-03-15 19:51:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Viroids.f__Pospiviroidae.g__Coleviroid
## 2023-03-15 19:51:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Papillomaviridae.g__Dyopipapillomavirus
## 2023-03-15 19:51:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Neosynechococcus
## 2023-03-15 19:51:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Dolichospermum
## 2023-03-15 19:51:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Altibacter
## 2023-03-15 19:51:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Methanomassiliicoccales.f__Methanomassiliicoccaceae.g__Candidatus_Methanomethylophilus
## 2023-03-15 19:51:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Mangrovibacter
## 2023-03-15 19:51:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Pseudoramibacter
## 2023-03-15 19:51:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Natronomonas
## 2023-03-15 19:51:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfospira
## 2023-03-15 19:51:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Arenitalea
## 2023-03-15 19:51:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Thermoactinomycetaceae.g__Shimazuella
## 2023-03-15 19:51:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Gaetbulibacter
## 2023-03-15 19:51:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Basilea
## 2023-03-15 19:51:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Alicyclobacillaceae.g__Effusibacillus
## 2023-03-15 19:51:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitinibacter
## 2023-03-15 19:51:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanoregulaceae.g__Methanolinea
## 2023-03-15 19:51:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Myxosarcina
## 2023-03-15 19:51:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Gayadomonas
## 2023-03-15 19:51:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Jeotgalibacillus
## 2023-03-15 19:51:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halobellus
## 2023-03-15 19:51:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Archaeoglobi.o__Archaeoglobales.f__Archaeoglobaceae.g__Ferroglobus
## 2023-03-15 19:51:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Olivibacter
## 2023-03-15 19:51:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Sediminibacillus
## 2023-03-15 19:51:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methanosarcinaceae.g__Methanohalobium
## 2023-03-15 19:51:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Robiginitalea
## 2023-03-15 19:51:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Caldimicrobium
## 2023-03-15 19:51:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Centipeda
## 2023-03-15 19:51:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Nocardiopsaceae.g__Allosalinactinospora
## 2023-03-15 19:51:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halogranum
## 2023-03-15 19:51:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Nautilia
## 2023-03-15 19:51:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Desulfurobacteriales.f__Desulfurobacteriaceae.g__Thermovibrio
## 2023-03-15 19:51:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Aliiroseovarius
## 2023-03-15 19:51:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halobacterium
## 2023-03-15 19:51:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Thaumarchaeota.o__Nitrosopumilales.f__Nitrosopumilaceae.g__Candidatus_Nitrosoarchaeum
## 2023-03-15 19:51:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Wolinella
## 2023-03-15 19:51:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Thaumarchaeota.o__Nitrosopumilales.f__Nitrosopumilaceae.g__Nitrosopumilus
## 2023-03-15 19:51:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Marinococcus
## 2023-03-15 19:51:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfobacula
## 2023-03-15 19:51:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanoculleus
## 2023-03-15 19:51:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylovorus
## 2023-03-15 19:51:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.o__Thermomicrobiales.f__Thermomicrobiaceae.g__Thermomicrobium
## 2023-03-15 19:51:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Thermocrinis
## 2023-03-15 19:51:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Arhodomonas
## 2023-03-15 19:51:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanofollis
## 2023-03-15 19:51:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Mesonia
## 2023-03-15 19:51:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Basfia
## 2023-03-15 19:51:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Candidatus_Atelocyanobacterium
## 2023-03-15 19:51:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Allobaculum
## 2023-03-15 19:51:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Coriobacterium
## 2023-03-15 19:51:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Haloplanus
## 2023-03-15 19:51:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Flagellimonas
## 2023-03-15 19:51:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Thermoproteales.f__Thermoproteaceae.g__Vulcanisaeta
## 2023-03-15 19:51:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Spongiibacteraceae.g__Zhongshania
## 2023-03-15 19:51:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Rummeliibacillus
## 2023-03-15 19:51:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfurivibrio
## 2023-03-15 19:51:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Salinibacillus
## 2023-03-15 19:51:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Pseudobutyrivibrio
## 2023-03-15 19:51:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Kosmotogales.f__Kosmotogaceae.g__Mesotoga
## 2023-03-15 19:51:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Paracaedibacteraceae.g__Candidatus_Odyssella
## 2023-03-15 19:51:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Dielma
## 2023-03-15 19:51:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Terribacillus
## 2023-03-15 19:51:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Acidilobales.f__Acidilobaceae.g__Acidilobus
## 2023-03-15 19:51:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Lentzea
## 2023-03-15 19:51:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Candidatus_Methylopumilus
## 2023-03-15 19:51:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Lacimicrobium
## 2023-03-15 19:51:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Halostagnicola
## 2023-03-15 19:51:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Adlercreutzia
## 2023-03-15 19:51:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Candidatus_Photodesmus
## 2023-03-15 19:51:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Nereida
## 2023-03-15 19:51:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Cloacibacillus
## 2023-03-15 19:51:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Thaumarchaeota.g__Candidatus_Nitrosotenuis
## 2023-03-15 19:51:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Thermoproteales.f__Thermoproteaceae.g__Caldivirga
## 2023-03-15 19:51:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Subdoligranulum
## 2023-03-15 19:51:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__T5likevirus
## 2023-03-15 19:51:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.g__Hoyosella
## 2023-03-15 19:51:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__N4likevirus
## 2023-03-15 19:51:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Halolactibacillus
## 2023-03-15 19:51:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Tymovirales.f__Betaflexiviridae.g__Trichovirus
## 2023-03-15 19:51:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Virgaviridae.g__Pecluvirus
## 2023-03-15 19:52:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanoregulaceae.g__Methanosphaerula
## 2023-03-15 19:52:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Sellimonas
## 2023-03-15 19:52:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phikmvlikevirus
## 2023-03-15 19:52:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Halopiger
## 2023-03-15 19:52:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Thalassomonas
## 2023-03-15 19:52:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Haloarcula
## 2023-03-15 19:52:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Gramella
## 2023-03-15 19:52:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Inoviridae.g__Inovirus
## 2023-03-15 19:52:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Pyrococcus
## 2023-03-15 19:52:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Aromatoleum
## 2023-03-15 19:52:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natronorubrum
## 2023-03-15 19:52:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Balneatrix
## 2023-03-15 19:52:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Legionellaceae.g__Tatlockia
## 2023-03-15 19:52:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Thalassolituus
## 2023-03-15 19:52:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Reinekea
## 2023-03-15 19:52:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomarinum
## 2023-03-15 19:52:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Tolumonas
## 2023-03-15 19:52:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Agarivorans
## 2023-03-15 19:52:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Alkalilimnicola
## 2023-03-15 19:52:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prolixibacteraceae.g__Prolixibacter
## 2023-03-15 19:52:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Prosthecochloris
## 2023-03-15 19:52:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatiglans
## 2023-03-15 19:52:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Holdemania
## 2023-03-15 19:52:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halanaeroarchaeum
## 2023-03-15 19:52:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Saccharospirillum
## 2023-03-15 19:52:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Amphritea
## 2023-03-15 19:52:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Renibacterium
## 2023-03-15 19:52:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Dactylococcopsis
## 2023-03-15 19:52:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.g__Aciduliprofundum
## 2023-03-15 19:52:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Puniceibacterium
## 2023-03-15 19:52:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ponticoccus
## 2023-03-15 19:52:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Thermotogaceae.g__Pseudothermotoga
## 2023-03-15 19:52:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Bermanella
## 2023-03-15 19:52:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Leeia
## 2023-03-15 19:52:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Zymobacter
## 2023-03-15 19:52:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Pelodictyon
## 2023-03-15 19:52:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Chloroflexia.o__Chloroflexales.f__Oscillochloridaceae.g__Oscillochloris
## 2023-03-15 19:52:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halarchaeum
## 2023-03-15 19:52:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.f__Competibacteraceae.g__Candidatus_Competibacter
## 2023-03-15 19:52:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Catenovulum
## 2023-03-15 19:52:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Lymphocryptovirus
## 2023-03-15 19:52:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Spongiibacteraceae.g__Dasania
## 2023-03-15 19:52:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halalkalicoccus
## 2023-03-15 19:52:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Coprobacter
## 2023-03-15 19:52:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Sideroxydans
## 2023-03-15 19:52:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatirhabdium
## 2023-03-15 19:52:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Citreicella
## 2023-03-15 19:52:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Nisaea
## 2023-03-15 19:52:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Obesumbacterium
## 2023-03-15 19:52:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.g__Thermosulfidibacter
## 2023-03-15 19:52:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Actinopolymorpha
## 2023-03-15 19:52:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Salinimonas
## 2023-03-15 19:52:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Cyclobacterium
## 2023-03-15 19:52:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Maritalea
## 2023-03-15 19:52:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Thermincola
## 2023-03-15 19:52:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Yokenella
## 2023-03-15 19:52:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Stigonematales.g__Mastigocladopsis
## 2023-03-15 19:52:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfonatronospira
## 2023-03-15 19:52:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Thalassotalea
## 2023-03-15 19:52:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Mesoaciditogales.f__Mesoaciditogaceae.g__Mesoaciditoga
## 2023-03-15 19:52:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Azonexus
## 2023-03-15 19:52:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Verrucomicrobia.c__Spartobacteria.g__Candidatus_Xiphinematobacter
## 2023-03-15 19:52:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.o__Haloplasmatales.f__Haloplasmataceae.g__Haloplasma
## 2023-03-15 19:52:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Parvularculales.f__Parvularculaceae.g__Parvularcula
## 2023-03-15 19:52:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Marinospirillum
## 2023-03-15 19:52:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Afifella
## 2023-03-15 19:52:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Pyrodictiaceae.g__Pyrodictium
## 2023-03-15 19:52:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.g__Methyloceanibacter
## 2023-03-15 19:52:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanoplanus
## 2023-03-15 19:52:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Poxviridae.g__Avipoxvirus
## 2023-03-15 19:52:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Litoreibacter
## 2023-03-15 19:52:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.g__Tenuivirus
## 2023-03-15 19:52:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Ignavibacteriae.c__Ignavibacteria.o__Ignavibacteriales.f__Melioribacteraceae.g__Melioribacter
## 2023-03-15 19:52:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Nocardiopsaceae.g__Streptomonospora
## 2023-03-15 19:52:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halogeometricum
## 2023-03-15 19:52:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Candidatus_Phaeomarinobacter
## 2023-03-15 19:52:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Cryomorphaceae.g__Owenweeksia
## 2023-03-15 19:52:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Rubidibacter
## 2023-03-15 19:52:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Deferribacter
## 2023-03-15 19:52:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Shuttleworthia
## 2023-03-15 19:52:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Leeuwenhoekiella
## 2023-03-15 19:52:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Gynuella
## 2023-03-15 19:52:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Marinimicrobium
## 2023-03-15 19:52:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Microcoleus
## 2023-03-15 19:52:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Salinivibrio
## 2023-03-15 19:52:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Blastopirellula
## 2023-03-15 19:52:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Paeniglutamicibacter
## 2023-03-15 19:52:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Hepadnaviridae.g__Orthohepadnavirus
## 2023-03-15 19:52:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Siccibacter
## 2023-03-15 19:52:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Youngiibacter
## 2023-03-15 19:52:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Holdemanella
## 2023-03-15 19:52:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Flexilinea
## 2023-03-15 19:52:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Actinotignum
## 2023-03-15 19:52:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Cyanobacterium
## 2023-03-15 19:52:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Crocinitomicaceae.g__Crocinitomix
## 2023-03-15 19:52:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Geovibrio
## 2023-03-15 19:52:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Bromoviridae.g__Cucumovirus
## 2023-03-15 19:52:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Candidatus_Koribacter
## 2023-03-15 19:52:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Cryobacterium
## 2023-03-15 19:52:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermabacteraceae.g__Helcobacillus
## 2023-03-15 19:52:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Chelonobacter
## 2023-03-15 19:52:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Halotalea
## 2023-03-15 19:52:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methanosarcinaceae.g__Methanohalophilus
## 2023-03-15 19:52:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Fictibacillus
## 2023-03-15 19:52:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Stanieria
## 2023-03-15 19:52:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Aerococcaceae.g__Eremococcus
## 2023-03-15 19:52:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Poxviridae.g__Alphaentomopoxvirus
## 2023-03-15 19:52:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Kerstersia
## 2023-03-15 19:52:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Pseudaminobacter
## 2023-03-15 19:52:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Thermopetrobacter
## 2023-03-15 19:52:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Mimiviridae.g__Mimivirus
## 2023-03-15 19:52:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Nitritalea
## 2023-03-15 19:52:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Cryocola
## 2023-03-15 19:52:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Longilinea
## 2023-03-15 19:52:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanoregulaceae.g__Methanoregula
## 2023-03-15 19:52:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Wohlfahrtiimonas
## 2023-03-15 19:52:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Riesia
## 2023-03-15 19:52:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Ammonifex
## 2023-03-15 19:52:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseibacterium
## 2023-03-15 19:52:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Derxia
## 2023-03-15 19:52:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Ideonella
## 2023-03-15 19:52:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Pleurocapsa
## 2023-03-15 19:52:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Moranella
## 2023-03-15 19:52:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Amphibacillus
## 2023-03-15 19:52:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Jejuia
## 2023-03-15 19:52:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Thaumarchaeota.g__Candidatus_Nitrosopelagicus
## 2023-03-15 19:52:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Isosphaeraceae.g__Isosphaera
## 2023-03-15 19:52:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Sedimenticola
## 2023-03-15 19:52:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Hydrogenobacter
## 2023-03-15 19:52:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Campylobacteraceae.g__Sulfurospirillum
## 2023-03-15 19:52:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Gallionella
## 2023-03-15 19:52:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Acaricomes
## 2023-03-15 19:52:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Aestuariivita
## 2023-03-15 19:52:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Leadbetterella
## 2023-03-15 19:52:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Enterovirus
## 2023-03-15 19:52:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Aurantimonadaceae.g__Fulvimarina
## 2023-03-15 19:52:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Chroococcidiopsis
## 2023-03-15 19:52:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Paraoerskovia
## 2023-03-15 19:52:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_IV._Incertae_Sedis.g__Mahella
## 2023-03-15 19:52:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Bdellovibrionales.f__Halobacteriovoraceae.g__Halobacteriovorax
## 2023-03-15 19:52:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ketogulonicigenium
## 2023-03-15 19:52:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Thaumarchaeota.c__Nitrososphaeria.o__Nitrososphaerales.f__Nitrososphaeraceae.g__Nitrososphaera
## 2023-03-15 19:52:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Herbiconiux
## 2023-03-15 19:52:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Deefgea
## 2023-03-15 19:52:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pragia
## 2023-03-15 19:52:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Ignatzschineria
## 2023-03-15 19:52:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Thioploca
## 2023-03-15 19:52:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.o__Bacteroidetes_Order_II._Incertae_sedis.f__Rhodothermaceae.g__Salisaeta
## 2023-03-15 19:52:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Salipiger
## 2023-03-15 19:52:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Candidatus_Ruthia
## 2023-03-15 19:52:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.g__Nitratiruptor
## 2023-03-15 19:52:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Fermentimonas
## 2023-03-15 19:52:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Hellea
## 2023-03-15 19:52:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Glutamicibacter
## 2023-03-15 19:52:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudorhodobacter
## 2023-03-15 19:52:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.g__Thermobaculum
## 2023-03-15 19:52:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Microvirgula
## 2023-03-15 19:52:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.g__Candidatus_Babela
## 2023-03-15 19:52:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Gemmata
## 2023-03-15 19:52:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Myxococcaceae.g__Corallococcus
## 2023-03-15 19:52:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Mitsuaria
## 2023-03-15 19:52:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Clostridium
## 2023-03-15 19:52:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Kandleria
## 2023-03-15 19:52:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Hafnia
## 2023-03-15 19:52:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Acidocella
## 2023-03-15 19:52:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Thermanaerothrix
## 2023-03-15 19:52:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Chloroherpeton
## 2023-03-15 19:52:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Phaeodactylibacter
## 2023-03-15 19:52:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Kurthia
## 2023-03-15 19:52:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Pyramidobacter
## 2023-03-15 19:52:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfotignum
## 2023-03-15 19:52:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.g__Kallipyga
## 2023-03-15 19:52:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sedimentitalea
## 2023-03-15 19:52:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Granulibacter
## 2023-03-15 19:52:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylothermaceae.g__Methylohalobius
## 2023-03-15 19:52:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Thermosynechococcus
## 2023-03-15 19:52:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bradyrhizobiaceae.g__Tardiphaga
## 2023-03-15 19:52:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Spirochaetaceae.g__Treponema
## 2023-03-15 19:52:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Sphingorhabdus
## 2023-03-15 19:52:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Bifidobacteriales.f__Bifidobacteriaceae.g__Parascardovia
## 2023-03-15 19:52:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Spirochaetaceae.g__Salinispira
## 2023-03-15 19:52:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.o__Bacteroidetes_Order_II._Incertae_sedis.f__Rhodothermaceae.g__Salinibacter
## 2023-03-15 19:52:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Caulobacterales.f__Caulobacteraceae.g__Woodsholea
## 2023-03-15 19:52:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Oxalobacteraceae.g__Pseudoduganella
## 2023-03-15 19:52:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Silanimonas
## 2023-03-15 19:52:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Eggerthia
## 2023-03-15 19:52:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Rhodovibrio
## 2023-03-15 19:52:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Mariniradius
## 2023-03-15 19:52:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiorhodococcus
## 2023-03-15 19:52:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Vibrio
## 2023-03-15 19:52:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Aequorivita
## 2023-03-15 19:52:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Xylanimonas
## 2023-03-15 19:52:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermodesulfobiaceae.g__Thermodesulfobium
## 2023-03-15 19:52:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Joostella
## 2023-03-15 19:52:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Anaerophaga
## 2023-03-15 19:52:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Rhodothermaeota.c__Balneolia.o__Balneolales.f__Balneolaceae.g__Balneola
## 2023-03-15 19:52:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiocystis
## 2023-03-15 19:52:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Mycobacteriaceae.g__Mycobacterium
## 2023-03-15 19:52:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Proteiniclasticum
## 2023-03-15 19:52:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Rudanella
## 2023-03-15 19:52:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Sediminibacter
## 2023-03-15 19:52:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Wolbachia
## 2023-03-15 19:52:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Aliihoeflea
## 2023-03-15 19:52:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Hoeflea
## 2023-03-15 19:52:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Aquamavirus
## 2023-03-15 19:52:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Desulfuromonadaceae.g__Desulfuromonas
## 2023-03-15 19:52:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Mannheimia
## 2023-03-15 19:52:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Pseudoalteromonadaceae.g__Pseudoalteromonas
## 2023-03-15 19:52:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Aquamicrobium
## 2023-03-15 19:52:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylococcus
## 2023-03-15 19:52:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_III._Incertae_Sedis.g__Caldicellulosiruptor
## 2023-03-15 19:52:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Candidatus_Stoquefichus
## 2023-03-15 19:52:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylovulum
## 2023-03-15 19:52:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Virgibacillus
## 2023-03-15 19:52:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Simiduia
## 2023-03-15 19:52:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Oceaniovalibus
## 2023-03-15 19:52:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Hydrogenibacillus
## 2023-03-15 19:52:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Gluconacetobacter
## 2023-03-15 19:52:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Chelativorans
## 2023-03-15 19:52:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanococci.o__Methanococcales.f__Methanococcaceae.g__Methanococcus
## 2023-03-15 19:52:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Paramesorhizobium
## 2023-03-15 19:52:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Coprococcus
## 2023-03-15 19:52:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natrinema
## 2023-03-15 19:52:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Paenibacillus
## 2023-03-15 19:52:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Levilinea
## 2023-03-15 19:52:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Flexistipes
## 2023-03-15 19:52:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Leuconostocaceae.g__Leuconostoc
## 2023-03-15 19:52:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halanaerobiaceae.g__Halothermothrix
## 2023-03-15 19:52:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylobacillus
## 2023-03-15 19:52:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Thiolapillus
## 2023-03-15 19:52:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Vitreoscilla
## 2023-03-15 19:52:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Carnobacteriaceae.g__Alloiococcus
## 2023-03-15 19:52:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methanosarcinaceae.g__Methanosarcina
## 2023-03-15 19:52:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Mimiviridae.g__Cafeteriavirus
## 2023-03-15 19:52:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Palaeococcus
## 2023-03-15 19:52:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Verrucomicrobia.c__Spartobacteria.g__Terrimicrobium
## 2023-03-15 19:52:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Bunyaviridae.g__Orthobunyavirus
## 2023-03-15 19:52:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Methylocapsa
## 2023-03-15 19:52:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Lunatimonas
## 2023-03-15 19:52:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Gulbenkiania
## 2023-03-15 19:52:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Nodosilinea
## 2023-03-15 19:52:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Richelia
## 2023-03-15 19:52:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Leptolinea
## 2023-03-15 19:52:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Thermomonosporaceae.g__Thermomonospora
## 2023-03-15 19:52:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Rubritepida
## 2023-03-15 19:52:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Siansivirga
## 2023-03-15 19:52:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Mucispirillum
## 2023-03-15 19:52:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Kribbella
## 2023-03-15 19:52:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Marvinbryantia
## 2023-03-15 19:52:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Anaerostipes
## 2023-03-15 19:52:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Nitrosococcus
## 2023-03-15 19:52:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Alkaliphilus
## 2023-03-15 19:52:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Legionellaceae.g__Fluoribacter
## 2023-03-15 19:52:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Ishikawaella
## 2023-03-15 19:52:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Christensenellaceae.g__Christensenella
## 2023-03-15 19:52:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Kushneria
## 2023-03-15 19:52:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Luteibacter
## 2023-03-15 19:52:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Tistrella
## 2023-03-15 19:52:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prevotellaceae.g__Hallella
## 2023-03-15 19:52:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Denitrobacterium
## 2023-03-15 19:52:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Hydrogenophilales.f__Hydrogenophilaceae.g__Thiobacillus
## 2023-03-15 19:52:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Halobacteroides
## 2023-03-15 19:52:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Capnocytophaga
## 2023-03-15 19:52:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Hepeviridae.g__Piscihepevirus
## 2023-03-15 19:52:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Akkermansiaceae.g__Akkermansia
## 2023-03-15 19:52:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Saccharibacter
## 2023-03-15 19:52:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Colwellia
## 2023-03-15 19:52:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Ignavibacteriae.c__Ignavibacteria.o__Ignavibacteriales.f__Ignavibacteriaceae.g__Ignavibacterium
## 2023-03-15 19:52:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Allochromatium
## 2023-03-15 19:52:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Dongia
## 2023-03-15 19:52:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Starkeya
## 2023-03-15 19:52:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Microterricola
## 2023-03-15 19:52:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Gallaecimonas
## 2023-03-15 19:52:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Sanguibacteroides
## 2023-03-15 19:52:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Beggiatoa
## 2023-03-15 19:52:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Waddliaceae.g__Waddlia
## 2023-03-15 19:52:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Flavisolibacter
## 2023-03-15 19:52:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Listeriaceae.g__Listeria
## 2023-03-15 19:52:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.f__Leptospiraceae.g__Leptonema
## 2023-03-15 19:52:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Franconibacter
## 2023-03-15 19:52:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Acidilobales.f__Caldisphaeraceae.g__Caldisphaera
## 2023-03-15 19:52:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Shimwellia
## 2023-03-15 19:52:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Carboxydothermus
## 2023-03-15 19:52:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Candidatus_Accumulibacter
## 2023-03-15 19:52:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Acidobacterium
## 2023-03-15 19:52:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Austwickia
## 2023-03-15 19:52:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudooceanicola
## 2023-03-15 19:52:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Yaniella
## 2023-03-15 19:52:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Fabavirus
## 2023-03-15 19:52:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Candidatus_Neoehrlichia
## 2023-03-15 19:52:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Archaeoglobi.o__Archaeoglobales.f__Archaeoglobaceae.g__Geoglobus
## 2023-03-15 19:52:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Dethiosulfovibrio
## 2023-03-15 19:52:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Aeribacillus
## 2023-03-15 19:52:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Mycoplasmatales.f__Mycoplasmataceae.g__Ureaplasma
## 2023-03-15 19:52:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Lentibacillus
## 2023-03-15 19:52:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Simplexvirus
## 2023-03-15 19:52:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.g__Acidibacillus
## 2023-03-15 19:52:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudodonghicola
## 2023-03-15 19:52:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitiniphilus
## 2023-03-15 19:52:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophaceae.g__Syntrophus
## 2023-03-15 19:52:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.g__Nitratifractor
## 2023-03-15 19:52:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Isosphaeraceae.g__Singulisphaera
## 2023-03-15 19:52:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfohalobium
## 2023-03-15 19:52:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfocapsa
## 2023-03-15 19:52:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Ewingella
## 2023-03-15 19:52:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Escherichia
## 2023-03-15 19:52:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Enterorhabdus
## 2023-03-15 19:52:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Propionispira
## 2023-03-15 19:52:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinopolysporales.f__Actinopolysporaceae.g__Actinopolyspora
## 2023-03-15 19:52:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Spongiibacteraceae.g__Spongiibacter
## 2023-03-15 19:52:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Nitrincola
## 2023-03-15 19:52:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Proteus
## 2023-03-15 19:52:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Parvibaculum
## 2023-03-15 19:52:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Kordiimonadales.f__Kordiimonadaceae.g__Kordiimonas
## 2023-03-15 19:52:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Cucumibacter
## 2023-03-15 19:52:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Chlamydiaceae.g__Chlamydia
## 2023-03-15 19:52:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Frateuria
## 2023-03-15 19:52:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oleiphilaceae.g__Oleiphilus
## 2023-03-15 19:52:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Thermoplasmatales.f__Picrophilaceae.g__Picrophilus
## 2023-03-15 19:52:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Sporomusaceae.g__Pelosinus
## 2023-03-15 19:52:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Andreprevotia
## 2023-03-15 19:52:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Diaphorobacter
## 2023-03-15 19:52:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Tetrasphaera
## 2023-03-15 19:52:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfonatronovibrio
## 2023-03-15 19:52:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Simkaniaceae.g__Simkania
## 2023-03-15 19:52:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Isoptericola
## 2023-03-15 19:52:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Longispora
## 2023-03-15 19:52:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Arenaviridae.g__Arenavirus
## 2023-03-15 19:52:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Dinoroseobacter
## 2023-03-15 19:52:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Chitinophaga
## 2023-03-15 19:52:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Blastomonas
## 2023-03-15 19:52:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Thermales.f__Thermaceae.g__Oceanithermus
## 2023-03-15 19:52:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Chitinimonas
## 2023-03-15 19:52:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zunongwangia
## 2023-03-15 19:52:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sediminimonas
## 2023-03-15 19:52:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Pelistega
## 2023-03-15 19:52:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfovibrionaceae.g__Lawsonia
## 2023-03-15 19:52:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Maritimibacter
## 2023-03-15 19:52:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Stappia
## 2023-03-15 19:52:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bradyrhizobiaceae.g__Oligotropha
## 2023-03-15 19:52:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Fusobacteriaceae.g__Ilyobacter
## 2023-03-15 19:52:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Polydnaviridae.g__Ichnovirus
## 2023-03-15 19:52:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Castellaniella
## 2023-03-15 19:52:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Steroidobacter
## 2023-03-15 19:52:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Peptostreptococcus
## 2023-03-15 19:52:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Geobacteraceae.g__Geopsychrobacter
## 2023-03-15 19:52:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Iridoviridae.g__Ranavirus
## 2023-03-15 19:52:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Gemmobacter
## 2023-03-15 19:52:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Oxalobacteraceae.g__Oxalobacter
## 2023-03-15 19:52:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Halorhodospira
## 2023-03-15 19:52:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Paraburkholderia
## 2023-03-15 19:52:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Lacinutrix
## 2023-03-15 19:52:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Bacteroidaceae.g__Bacteroides
## 2023-03-15 19:52:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Eudoraea
## 2023-03-15 19:52:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Terasakiella
## 2023-03-15 19:52:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_III._Incertae_Sedis.g__Thermosediminibacter
## 2023-03-15 19:52:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfarculales.f__Desulfarculaceae.g__Desulfarculus
## 2023-03-15 19:52:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Nonlabens
## 2023-03-15 19:52:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Hahellaceae.g__Hahella
## 2023-03-15 19:52:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Leucothrix
## 2023-03-15 19:52:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Poxviridae.g__Leporipoxvirus
## 2023-03-15 19:52:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Verrucosispora
## 2023-03-15 19:52:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Prauserella
## 2023-03-15 19:52:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Oerskovia
## 2023-03-15 19:52:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Fibrobacteres.c__Fibrobacteria.o__Fibrobacterales.f__Fibrobacteraceae.g__Fibrobacter
## 2023-03-15 19:52:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Anaerofustis
## 2023-03-15 19:52:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Hydrogenovibrio
## 2023-03-15 19:52:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Octadecabacter
## 2023-03-15 19:52:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Nostoc
## 2023-03-15 19:52:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Amoebophilaceae.g__Candidatus_Amoebophilus
## 2023-03-15 19:52:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Brucellaceae.g__Ochrobactrum
## 2023-03-15 19:52:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Aminomonas
## 2023-03-15 19:52:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Opitutales.f__Opitutaceae.g__Cephaloticoccus
## 2023-03-15 19:52:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chrysiogenetes.c__Chrysiogenetes.o__Chrysiogenales.f__Chrysiogenaceae.g__Desulfurispirillum
## 2023-03-15 19:52:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Glycomycetales.f__Glycomycetaceae.g__Haloglycomyces
## 2023-03-15 19:52:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Dicistroviridae.g__Cripavirus
## 2023-03-15 19:52:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Yonghaparkia
## 2023-03-15 19:52:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Prochlorales.f__Prochlorotrichaceae.g__Prochlorothrix
## 2023-03-15 19:52:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Lentisphaerae.c__Lentisphaeria.o__Lentisphaerales.f__Lentisphaeraceae.g__Lentisphaera
## 2023-03-15 19:52:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Zymomonas
## 2023-03-15 19:52:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Tunalikevirus
## 2023-03-15 19:52:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Micavibrio
## 2023-03-15 19:52:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Ferrimicrobium
## 2023-03-15 19:52:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Crocinitomicaceae.g__Fluviicola
## 2023-03-15 19:52:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ahrensia
## 2023-03-15 19:52:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Thalassobaculum
## 2023-03-15 19:52:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Rouxiella
## 2023-03-15 19:52:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Aliagarivorans
## 2023-03-15 19:52:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Yersinia
## 2023-03-15 19:52:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Kineosporiales.f__Kineosporiaceae.g__Kineosporia
## 2023-03-15 19:52:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Haloterrigena
## 2023-03-15 19:52:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Granulicella
## 2023-03-15 19:52:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.g__Timonella
## 2023-03-15 19:52:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Aeromonas
## 2023-03-15 19:52:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Methylibium
## 2023-03-15 19:52:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Elusimicrobia.c__Elusimicrobia.o__Elusimicrobiales.f__Elusimicrobiaceae.g__Elusimicrobium
## 2023-03-15 19:52:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatitalea
## 2023-03-15 19:52:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylobacteriaceae.g__Microvirga
## 2023-03-15 19:52:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Alphacoronavirus
## 2023-03-15 19:52:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Viridibacillus
## 2023-03-15 19:52:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Arenimonas
## 2023-03-15 19:52:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Microthrixaceae.g__Candidatus_Microthrix
## 2023-03-15 19:52:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Thermodesulfatator
## 2023-03-15 19:52:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Melissococcus
## 2023-03-15 19:52:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Alcanivoracaceae.g__Alcanivorax
## 2023-03-15 19:52:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanobacteriaceae.g__Methanosphaera
## 2023-03-15 19:52:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Crenobacter
## 2023-03-15 19:52:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfarculales.f__Desulfarculaceae.g__Dethiosulfatarculus
## 2023-03-15 19:52:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Niabella
## 2023-03-15 19:52:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Faecalibaculum
## 2023-03-15 19:52:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Croceibacter
## 2023-03-15 19:52:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sagittula
## 2023-03-15 19:52:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Salinimicrobium
## 2023-03-15 19:52:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Spounalikevirus
## 2023-03-15 19:52:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Confluentimicrobium
## 2023-03-15 19:52:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thalassobacter
## 2023-03-15 19:52:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Kluyvera
## 2023-03-15 19:52:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Anaerobacillus
## 2023-03-15 19:52:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Tachikawaea
## 2023-03-15 19:52:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Haemophilus
## 2023-03-15 19:52:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Sediminicola
## 2023-03-15 19:52:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfobulbus
## 2023-03-15 19:52:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Salegentibacter
## 2023-03-15 19:52:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobiaceae.g__Haloferula
## 2023-03-15 19:52:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Terrabacter
## 2023-03-15 19:52:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Wenxinia
## 2023-03-15 19:52:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Marseilleviridae.g__Marseillevirus
## 2023-03-15 19:52:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Dokdonella
## 2023-03-15 19:52:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Betacoronavirus
## 2023-03-15 19:52:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Ponticaulis
## 2023-03-15 19:52:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Terracoccus
## 2023-03-15 19:52:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cardiobacteriales.f__Cardiobacteriaceae.g__Cardiobacterium
## 2023-03-15 19:52:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Pelagibacterium
## 2023-03-15 19:52:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Raoultella
## 2023-03-15 19:52:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Sandarakinorhabdus
## 2023-03-15 19:52:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfosarcina
## 2023-03-15 19:52:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.g__Phocaeicola
## 2023-03-15 19:52:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.g__Caedibacter
## 2023-03-15 19:52:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Teredinibacter
## 2023-03-15 19:52:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.g__Thermorudis
## 2023-03-15 19:52:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Dermatophilus
## 2023-03-15 19:52:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Limnochordia.o__Limnochordales.f__Limnochordaceae.g__Limnochorda
## 2023-03-15 19:52:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Sulfuritalea
## 2023-03-15 19:52:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhizobiaceae.g__Rhizobium
## 2023-03-15 19:52:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Synergistes
## 2023-03-15 19:52:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Lactobacillaceae.g__Sharpea
## 2023-03-15 19:52:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Gordoniaceae.g__Gordonia
## 2023-03-15 19:52:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Pseudohongiella
## 2023-03-15 19:52:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Novispirillum
## 2023-03-15 19:52:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Paenirhodobacter
## 2023-03-15 19:52:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.g__Exiguobacterium
## 2023-03-15 19:52:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Flaviviridae.g__Pestivirus
## 2023-03-15 19:52:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Fodinicurvata
## 2023-03-15 19:52:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Riemerella
## 2023-03-15 19:52:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Echinicola
## 2023-03-15 19:52:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Psychroflexus
## 2023-03-15 19:52:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Galbibacter
## 2023-03-15 19:52:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Xylella
## 2023-03-15 19:52:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Flaviflexus
## 2023-03-15 19:52:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Shimia
## 2023-03-15 19:52:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseivivax
## 2023-03-15 19:52:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Hahellaceae.g__Zooshikella
## 2023-03-15 19:52:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Actinocatenispora
## 2023-03-15 19:52:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Acidobacteria.c__Solibacteres.o__Solibacterales.f__Solibacteraceae.g__Candidatus_Solibacter
## 2023-03-15 19:52:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Thermales.f__Thermaceae.g__Marinithermus
## 2023-03-15 19:52:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Rubinisphaera
## 2023-03-15 19:52:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Histophilus
## 2023-03-15 19:52:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Oleiagrimonas
## 2023-03-15 19:52:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Acidobacteria.c__Solibacteres.o__Solibacterales.g__Bryobacter
## 2023-03-15 19:52:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Emticicia
## 2023-03-15 19:52:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Rhizobacter
## 2023-03-15 19:52:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Magnetococcales.f__Magnetococcaceae.g__Magnetococcus
## 2023-03-15 19:52:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfovibrionaceae.g__Bilophila
## 2023-03-15 19:52:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Propionibacteriaceae.g__Propionimicrobium
## 2023-03-15 19:52:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Kamptonema
## 2023-03-15 19:52:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Halieaceae.g__Luminiphilus
## 2023-03-15 19:52:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Actinobaculum
## 2023-03-15 19:52:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Methyloferula
## 2023-03-15 19:52:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Croceitalea
## 2023-03-15 19:52:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Pseudolabrys
## 2023-03-15 19:52:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Coprobacillus
## 2023-03-15 19:52:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Stigonematales.g__Hapalosiphon
## 2023-03-15 19:52:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Apibacter
## 2023-03-15 19:52:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitinilyticum
## 2023-03-15 19:52:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Syntrophobotulus
## 2023-03-15 19:52:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Phaeospirillum
## 2023-03-15 19:52:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Polycyclovorans
## 2023-03-15 19:52:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Bdellovibrionales.f__Bacteriovoracaceae.g__Bacteriovorax
## 2023-03-15 19:52:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Virgaviridae.g__Pomovirus
## 2023-03-15 19:52:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Marinovum
## 2023-03-15 19:52:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Dehalococcoidia.g__Dehalogenimonas
## 2023-03-15 19:52:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Enorma
## 2023-03-15 19:52:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinomycetospora
## 2023-03-15 19:52:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Glaciecola
## 2023-03-15 19:52:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Alkaliflexus
## 2023-03-15 19:52:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Limnobacter
## 2023-03-15 19:52:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Citromicrobium
## 2023-03-15 19:52:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Thioalkalimicrobium
## 2023-03-15 19:52:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Bellilinea
## 2023-03-15 19:52:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomonas
## 2023-03-15 19:52:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Cyanothece
## 2023-03-15 19:52:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Halonatronum
## 2023-03-15 19:52:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Orbales.f__Orbaceae.g__Candidatus_Schmidhempelia
## 2023-03-15 19:52:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Neorickettsia
## 2023-03-15 19:52:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Desulfurococcaceae.g__Ignicoccus
## 2023-03-15 19:52:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Puniceicoccales.f__Puniceicoccaceae.g__Coraliomargarita
## 2023-03-15 19:52:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Ornithobacterium
## 2023-03-15 19:52:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Mucilaginibacter
## 2023-03-15 19:52:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Anaerovibrio
## 2023-03-15 19:52:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Cyanobium
## 2023-03-15 19:52:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Oceanibaculum
## 2023-03-15 19:52:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Microbulbiferaceae.g__Microbulbifer
## 2023-03-15 19:52:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Flavihumibacter
## 2023-03-15 19:52:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Crocosphaera
## 2023-03-15 19:52:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Mobilicoccus
## 2023-03-15 19:52:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Holosporaceae.g__Holospora
## 2023-03-15 19:52:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Oceanospirillum
## 2023-03-15 19:52:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Agrococcus
## 2023-03-15 19:52:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Comamonas
## 2023-03-15 19:52:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Cytophaga
## 2023-03-15 19:52:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Eggerthella
## 2023-03-15 19:52:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Kibdelosporangium
## 2023-03-15 19:52:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Weeksella
## 2023-03-15 19:52:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Oceanicaulis
## 2023-03-15 19:52:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Candidatus_Desulforudis
## 2023-03-15 19:52:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Gulosibacter
## 2023-03-15 19:52:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Caliciviridae.g__Vesivirus
## 2023-03-15 19:52:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Leptotrichiaceae.g__Streptobacillus
## 2023-03-15 19:52:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Chania
## 2023-03-15 19:52:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sulfitobacter
## 2023-03-15 19:52:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Microscilla
## 2023-03-15 19:52:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Glycomycetales.f__Glycomycetaceae.g__Glycomyces
## 2023-03-15 19:52:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Rikenellaceae.g__Mucinivorans
## 2023-03-15 19:52:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Adenoviridae.g__Mastadenovirus
## 2023-03-15 19:52:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bartonellaceae.g__Bartonella
## 2023-03-15 19:52:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Allokutzneria
## 2023-03-15 19:52:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Asaia
## 2023-03-15 19:52:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Rubrivivax
## 2023-03-15 19:52:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Campylobacteraceae.g__Campylobacter
## 2023-03-15 19:52:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophaceae.g__Desulfomonile
## 2023-03-15 19:52:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Arcanobacterium
## 2023-03-15 19:52:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Arcticibacter
## 2023-03-15 19:52:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Ornatilinea
## 2023-03-15 19:52:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Ferriphaselus
## 2023-03-15 19:52:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Ectothiorhodospira
## 2023-03-15 19:52:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Herpesvirales.f__Alloherpesviridae.g__Ictalurivirus
## 2023-03-15 19:52:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cardiobacteriales.f__Cardiobacteriaceae.g__Dichelobacter
## 2023-03-15 19:52:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Aminobacterium
## 2023-03-15 19:52:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Entomoplasmatales.f__Entomoplasmataceae.g__Entomoplasma
## 2023-03-15 19:52:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylobacteriaceae.g__Meganema
## 2023-03-15 19:52:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Desulfurispora
## 2023-03-15 19:52:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Tanticharoenia
## 2023-03-15 19:52:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Commensalibacter
## 2023-03-15 19:52:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Plantibacter
## 2023-03-15 19:52:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Polyangiaceae.g__Sorangium
## 2023-03-15 19:52:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Skermanella
## 2023-03-15 19:52:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Leifsonia
## 2023-03-15 19:52:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Epulopiscium
## 2023-03-15 19:52:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Johnsonella
## 2023-03-15 19:52:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudovibrio
## 2023-03-15 19:52:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Thermomonas
## 2023-03-15 19:52:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Lyngbya
## 2023-03-15 19:52:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Knoellia
## 2023-03-15 19:52:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Myroides
## 2023-03-15 19:52:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Hamadaea
## 2023-03-15 19:52:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Salinarchaeum
## 2023-03-15 19:52:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Thermanaerovibrio
## 2023-03-15 19:52:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Formosa
## 2023-03-15 19:52:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Sediminibacterium
## 2023-03-15 19:52:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Saccharomonospora
## 2023-03-15 19:53:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Nakamurellales.f__Nakamurellaceae.g__Nakamurella
## 2023-03-15 19:53:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Microchaetaceae.g__Tolypothrix
## 2023-03-15 19:53:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Psychromonadaceae.g__Psychromonas
## 2023-03-15 19:53:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Vulgatibacteraceae.g__Vulgatibacter
## 2023-03-15 19:53:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Pasteurella
## 2023-03-15 19:53:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Tenacibaculum
## 2023-03-15 19:53:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zhouia
## 2023-03-15 19:53:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Cesiribacter
## 2023-03-15 19:53:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Kineosporiales.f__Kineosporiaceae.g__Angustibacter
## 2023-03-15 19:53:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Phycodnaviridae.g__Prymnesiovirus
## 2023-03-15 19:53:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Rhodospirillum
## 2023-03-15 19:53:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Rudaea
## 2023-03-15 19:53:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Mitsuokella
## 2023-03-15 19:53:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Veillonellales.f__Veillonellaceae.g__Megasphaera
## 2023-03-15 19:53:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Roseivirga
## 2023-03-15 19:53:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Oscillospiraceae.g__Oscillibacter
## 2023-03-15 19:53:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Roseburia
## 2023-03-15 19:53:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Nesiotobacter
## 2023-03-15 19:53:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulforegula
## 2023-03-15 19:53:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Muricauda
## 2023-03-15 19:53:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Orbales.f__Orbaceae.g__Frischella
## 2023-03-15 19:53:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Acetobacter
## 2023-03-15 19:53:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Methylocella
## 2023-03-15 19:53:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Catelliglobosispora
## 2023-03-15 19:53:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Spirosoma
## 2023-03-15 19:53:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Desulfurobacteriales.f__Desulfurobacteriaceae.g__Desulfurobacterium
## 2023-03-15 19:53:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Magnetospira
## 2023-03-15 19:53:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Anaerolinea
## 2023-03-15 19:53:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Thermoanaerobacter
## 2023-03-15 19:53:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Vitellibacter
## 2023-03-15 19:53:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sneathiellales.f__Sneathiellaceae.g__Sneathiella
## 2023-03-15 19:53:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Hirschia
## 2023-03-15 19:53:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhizobiaceae.g__Neorhizobium
## 2023-03-15 19:53:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.g__Candidatus_Azobacteroides
## 2023-03-15 19:53:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Planktomarina
## 2023-03-15 19:53:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Senegalimassilia
## 2023-03-15 19:53:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Polyangiaceae.g__Chondromyces
## 2023-03-15 19:53:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Kozakia
## 2023-03-15 19:53:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Silvibacterium
## 2023-03-15 19:53:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Sporolactobacillaceae.g__Tuberibacillus
## 2023-03-15 19:53:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Polynucleobacter
## 2023-03-15 19:53:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Gimesia
## 2023-03-15 19:53:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Microbispora
## 2023-03-15 19:53:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Verrucomicrobia.o__Methylacidiphilales.f__Methylacidiphilaceae.g__Methylacidiphilum
## 2023-03-15 19:53:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Thermonemataceae.g__Thermonema
## 2023-03-15 19:53:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobiaceae.g__Verrucomicrobium
## 2023-03-15 19:53:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Thermococcus
## 2023-03-15 19:53:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Flavobacterium
## 2023-03-15 19:53:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Thiorhodospira
## 2023-03-15 19:53:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Blautia
## 2023-03-15 19:53:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Haematospirillum
## 2023-03-15 19:53:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Filomicrobium
## 2023-03-15 19:53:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Jannaschia
## 2023-03-15 19:53:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Defluviimonas
## 2023-03-15 19:53:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Curvibacter
## 2023-03-15 19:53:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.o__Sphaerobacterales.f__Sphaerobacteraceae.g__Sphaerobacter
## 2023-03-15 19:53:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Elusimicrobia.c__Endomicrobia.o__Endomicrobiales.f__Endomicrobiaceae.g__Endomicrobium
## 2023-03-15 19:53:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Haloferax
## 2023-03-15 19:53:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Cylindrospermum
## 2023-03-15 19:53:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Chelatococcus
## 2023-03-15 19:53:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Dictyoglomi.c__Dictyoglomia.o__Dictyoglomales.f__Dictyoglomaceae.g__Dictyoglomus
## 2023-03-15 19:53:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Catenulisporales.f__Actinospicaceae.g__Actinospica
## 2023-03-15 19:53:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Neptunomonas
## 2023-03-15 19:53:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Kiloniellales.f__Kiloniellaceae.g__Kiloniella
## 2023-03-15 19:53:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Caldicoprobacteraceae.g__Caldicoprobacter
## 2023-03-15 19:53:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Nonomuraea
## 2023-03-15 19:53:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Deinococcales.f__Trueperaceae.g__Truepera
## 2023-03-15 19:53:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Planctomyces
## 2023-03-15 19:53:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Candidatus_Profftella
## 2023-03-15 19:53:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Desulfuromonadaceae.g__Pelobacter
## 2023-03-15 19:53:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Mycoplasmatales.f__Mycoplasmataceae.g__Mycoplasma
## 2023-03-15 19:53:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Segetibacter
## 2023-03-15 19:53:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Lewinella
## 2023-03-15 19:53:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Leptotrichiaceae.g__Sebaldella
## 2023-03-15 19:53:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Enterococcus
## 2023-03-15 19:53:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Methylophaga
## 2023-03-15 19:53:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Anaeromyxobacteraceae.g__Anaeromyxobacter
## 2023-03-15 19:53:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Saccharibacillus
## 2023-03-15 19:53:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Acetohalobium
## 2023-03-15 19:53:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Sulfuricellales.f__Sulfuricellaceae.g__Sulfuricella
## 2023-03-15 19:53:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Carnobacteriaceae.g__Jeotgalibaca
## 2023-03-15 19:53:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Marinilabilia
## 2023-03-15 19:53:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Parvimonas
## 2023-03-15 19:53:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Flexithrix
## 2023-03-15 19:53:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Microtetraspora
## 2023-03-15 19:53:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Rhodoluna
## 2023-03-15 19:53:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Agreia
## 2023-03-15 19:53:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Marivirga
## 2023-03-15 19:53:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Orenia
## 2023-03-15 19:53:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Gordonibacter
## 2023-03-15 19:53:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Geodermatophilales.f__Geodermatophilaceae.g__Geodermatophilus
## 2023-03-15 19:53:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Candidatus_Korarchaeota.g__Candidatus_Korarchaeum
## 2023-03-15 19:53:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Catabacteriaceae.g__Catabacter
## 2023-03-15 19:53:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Rhodomicrobium
## 2023-03-15 19:53:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Thermoactinomycetaceae.g__Thermoactinomyces
## 2023-03-15 19:53:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Solibacillus
## 2023-03-15 19:53:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Propionibacteriaceae.g__Granulicoccus
## 2023-03-15 19:53:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Succinivibrionaceae.g__Succinivibrio
## 2023-03-15 19:53:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Asanoa
## 2023-03-15 19:53:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Ehrlichia
## 2023-03-15 19:53:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Brachyspirales.f__Brachyspiraceae.g__Brachyspira
## 2023-03-15 19:53:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Aquimarina
## 2023-03-15 19:53:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Polyomaviridae.g__Polyomavirus
## 2023-03-15 19:53:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Odoribacteraceae.g__Odoribacter
## 2023-03-15 19:53:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Catellicoccus
## 2023-03-15 19:53:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Olleya
## 2023-03-15 19:53:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Henriciella
## 2023-03-15 19:53:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methermicoccaceae.g__Methermicoccus
## 2023-03-15 19:53:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobia_subdivision_3.g__Pedosphaera
## 2023-03-15 19:53:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Planomonospora
## 2023-03-15 19:53:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Hydrogenivirga
## 2023-03-15 19:53:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Robinsoniella
## 2023-03-15 19:53:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Maribius
## 2023-03-15 19:53:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Aquincola
## 2023-03-15 19:53:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Sciscionella
## 2023-03-15 19:53:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Belnapia
## 2023-03-15 19:53:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Caulobacterales.f__Caulobacteraceae.g__Phenylobacterium
## 2023-03-15 19:53:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Arsenicicoccus
## 2023-03-15 19:53:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Dicistroviridae.g__Aparavirus
## 2023-03-15 19:53:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Methylopila
## 2023-03-15 19:53:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Astroviridae.g__Mamastrovirus
## 2023-03-15 19:53:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Inquilinus
## 2023-03-15 19:53:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.g__Candidatus_Hepatobacter
## 2023-03-15 19:53:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Maribacter
## 2023-03-15 19:53:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Phycodnaviridae.g__Prasinovirus
## 2023-03-15 19:53:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Microbacterium
## 2023-03-15 19:53:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Symbiobacteriaceae.g__Symbiobacterium
## 2023-03-15 19:53:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Geofilum
## 2023-03-15 19:53:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Mangrovimonas
## 2023-03-15 19:53:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanothermaceae.g__Methanothermus
## 2023-03-15 19:53:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Candidatus_Soleaferrea
## 2023-03-15 19:53:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Oceanibulbus
## 2023-03-15 19:53:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Pseudomonadaceae.g__Oblitimonas
## 2023-03-15 19:53:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Herpesvirales.f__Alloherpesviridae.g__Batrachovirus
## 2023-03-15 19:53:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermabacteraceae.g__Dermabacter
## 2023-03-15 19:53:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Candidatus_Arthromitus
## 2023-03-15 19:53:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Photobacterium
## 2023-03-15 19:53:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Pirellula
## 2023-03-15 19:53:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Fibrella
## 2023-03-15 19:53:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Falsirhodobacter
## 2023-03-15 19:53:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halapricum
## 2023-03-15 19:53:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Frankiales.f__Sporichthyaceae.g__Sporichthya
## 2023-03-15 19:53:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.g__Tropheryma
## 2023-03-15 19:53:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.g__Higrevirus
## 2023-03-15 19:53:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Rivulariaceae.g__Calothrix
## 2023-03-15 19:53:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Haliscomenobacter
## 2023-03-15 19:53:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pluralibacter
## 2023-03-15 19:53:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Muribacter
## 2023-03-15 19:53:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Leuconostocaceae.g__Weissella
## 2023-03-15 19:53:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thalassobius
## 2023-03-15 19:53:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Paracaedibacteraceae.g__Candidatus_Paracaedibacter
## 2023-03-15 19:53:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Flammeovirga
## 2023-03-15 19:53:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Paludibacterium
## 2023-03-15 19:53:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Petrotogales.g__Marinitoga
## 2023-03-15 19:53:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Candidatus_Puniceispirillum
## 2023-03-15 19:53:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Hymenobacter
## 2023-03-15 19:53:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Pseudoflavonifractor
## 2023-03-15 19:53:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Methyloversatilis
## 2023-03-15 19:53:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bradyrhizobiaceae.g__Rhodopseudomonas
## 2023-03-15 19:53:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Methanomassiliicoccales.f__Methanomassiliicoccaceae.g__Methanomassiliicoccus
## 2023-03-15 19:53:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Enteractinococcus
## 2023-03-15 19:53:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Rufibacter
## 2023-03-15 19:53:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Persicobacteraceae.g__Persicobacter
## 2023-03-15 19:53:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Aurantimonadaceae.g__Aurantimonas
## 2023-03-15 19:53:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Nitrosomonadales.f__Nitrosomonadaceae.g__Nitrosospira
## 2023-03-15 19:53:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Xanthobacter
## 2023-03-15 19:53:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermacoccaceae.g__Luteipulveratus
## 2023-03-15 19:53:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Faecalicoccus
## 2023-03-15 19:53:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Papillomaviridae.g__Omegapapillomavirus
## 2023-03-15 19:53:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Kinetoplastibacterium
## 2023-03-15 19:53:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Tamlana
## 2023-03-15 19:53:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Pseudobacteroides
## 2023-03-15 19:53:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Paeniclostridium
## 2023-03-15 19:53:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Celeribacter
## 2023-03-15 19:53:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Erysipelatoclostridium
## 2023-03-15 19:53:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Chryseobacterium
## 2023-03-15 19:53:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Bifidobacteriales.f__Bifidobacteriaceae.g__Scardovia
## 2023-03-15 19:53:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Ilumatobacter
## 2023-03-15 19:53:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Waikavirus
## 2023-03-15 19:53:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Dysgonomonas
## 2023-03-15 19:53:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Oscillatoria
## 2023-03-15 19:53:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Fervidobacteriaceae.g__Thermosipho
## 2023-03-15 19:53:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Tepidicaulis
## 2023-03-15 19:53:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Cycloclasticus
## 2023-03-15 19:53:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Hylemonella
## 2023-03-15 19:53:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Oribacterium
## 2023-03-15 19:53:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Salivirus
## 2023-03-15 19:53:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Amorphus
## 2023-03-15 19:53:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Planktothrix
## 2023-03-15 19:53:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Papillomaviridae.g__Lambdapapillomavirus
## 2023-03-15 19:53:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Candidatus_Aquiluna
## 2023-03-15 19:53:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Sutterellaceae.g__Sutterella
## 2023-03-15 19:53:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylocaldum
## 2023-03-15 19:53:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Mardivirus
## 2023-03-15 19:53:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Circoviridae.g__Circovirus
## 2023-03-15 19:53:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Spiribacter
## 2023-03-15 19:53:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Lentimicrobiaceae.g__Lentimicrobium
## 2023-03-15 19:53:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Criblamydiaceae.g__Criblamydia
## 2023-03-15 19:53:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhizobiaceae.g__Agrobacterium
## 2023-03-15 19:53:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Flavonifractor
## 2023-03-15 19:53:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Staphylococcaceae.g__Macrococcus
## 2023-03-15 19:53:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Porticoccaceae.g__Porticoccus
## 2023-03-15 19:53:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Rubellimicrobium
## 2023-03-15 19:53:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiales_Family_XIII._Incertae_Sedis.g__Anaerovorax
## 2023-03-15 19:53:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Opitutales.f__Opitutaceae.g__Opitutus
## 2023-03-15 19:53:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Acidobacteria.c__Blastocatellia.g__Chloracidobacterium
## 2023-03-15 19:53:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Loktanella
## 2023-03-15 19:53:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Partitiviridae.g__Betapartitivirus
## 2023-03-15 19:53:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Salimicrobium
## 2023-03-15 19:53:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Advenella
## 2023-03-15 19:53:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Eikenella
## 2023-03-15 19:53:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Oxalobacteraceae.g__Herbaspirillum
## 2023-03-15 19:53:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfovermiculus
## 2023-03-15 19:53:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thioclava
## 2023-03-15 19:53:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thioflavicoccus
## 2023-03-15 19:53:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Paucibacter
## 2023-03-15 19:53:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Bafinivirus
## 2023-03-15 19:53:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Adhaeribacter
## 2023-03-15 19:53:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Kineosphaera
## 2023-03-15 19:53:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Paenisporosarcina
## 2023-03-15 19:53:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Thermobrachium
## 2023-03-15 19:53:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Rhodobacter
## 2023-03-15 19:53:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Xylophilus
## 2023-03-15 19:53:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Rhodopirellula
## 2023-03-15 19:53:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Cellulosimicrobium
## 2023-03-15 19:53:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Amantichitinum
## 2023-03-15 19:53:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Gracilibacillus
## 2023-03-15 19:53:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Schleiferiaceae.g__Schleiferia
## 2023-03-15 19:53:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halorhabdus
## 2023-03-15 19:53:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Kosakonia
## 2023-03-15 19:53:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Oxalobacteraceae.g__Herminiimonas
## 2023-03-15 19:53:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Slackia
## 2023-03-15 19:53:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.g__Reyranella
## 2023-03-15 19:53:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Gemmatimonadetes.c__Gemmatimonadetes.o__Gemmatimonadales.f__Gemmatimonadaceae.g__Gemmatirosa
## 2023-03-15 19:53:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.f__Leptospiraceae.g__Turneriella
## 2023-03-15 19:53:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Bunyaviridae.g__Tospovirus
## 2023-03-15 19:53:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Halocynthiibacter
## 2023-03-15 19:53:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Petrotogales.g__Defluviitoga
## 2023-03-15 19:53:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Sandaracinaceae.g__Sandaracinus
## 2023-03-15 19:53:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiocapsa
## 2023-03-15 19:53:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Cryptobacterium
## 2023-03-15 19:53:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Sporomusaceae.g__Anaeromusa
## 2023-03-15 19:53:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Thermocrispum
## 2023-03-15 19:53:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.g__Anaerosporomusa
## 2023-03-15 19:53:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Staphylococcaceae.g__Jeotgalicoccus
## 2023-03-15 19:53:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Phycicoccus
## 2023-03-15 19:53:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfobacterium
## 2023-03-15 19:53:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Cellulosilyticum
## 2023-03-15 19:53:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Lutibacter
## 2023-03-15 19:53:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ruegeria
## 2023-03-15 19:53:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Rubritaleaceae.g__Rubritalea
## 2023-03-15 19:53:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Lampropedia
## 2023-03-15 19:53:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatibacillum
## 2023-03-15 19:53:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseovarius
## 2023-03-15 19:53:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Blastochloris
## 2023-03-15 19:53:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Pontibacter
## 2023-03-15 19:53:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Arenibacter
## 2023-03-15 19:53:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Varibaculum
## 2023-03-15 19:53:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Anaerobaculum
## 2023-03-15 19:53:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophobacteraceae.g__Syntrophobacter
## 2023-03-15 19:53:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Mizugakiibacter
## 2023-03-15 19:53:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Caldiserica.c__Caldisericia.o__Caldisericales.f__Caldisericaceae.g__Caldisericum
## 2023-03-15 19:53:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pantoea
## 2023-03-15 19:53:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Buttiauxella
## 2023-03-15 19:53:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Tatumella
## 2023-03-15 19:53:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Aneurinibacillus
## 2023-03-15 19:53:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Poxviridae.g__Molluscipoxvirus
## 2023-03-15 19:53:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanobacteriaceae.g__Methanobrevibacter
## 2023-03-15 19:53:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiorhodovibrio
## 2023-03-15 19:53:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Sinomonas
## 2023-03-15 19:53:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Avibacterium
## 2023-03-15 19:53:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Thiomicrospira
## 2023-03-15 19:53:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Xenococcus
## 2023-03-15 19:53:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfomicrobiaceae.g__Desulfomicrobium
## 2023-03-15 19:53:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Segniliparaceae.g__Segniliparus
## 2023-03-15 19:53:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Lachnoanaerobaculum
## 2023-03-15 19:53:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prevotellaceae.g__Prevotella
## 2023-03-15 19:53:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Halothiobacillaceae.g__Halothiobacillus
## 2023-03-15 19:53:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Maricaulis
## 2023-03-15 19:53:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Vagococcus
## 2023-03-15 19:53:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Brackiella
## 2023-03-15 19:53:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Rhodothermaeota.c__Balneolia.o__Balneolales.f__Balneolaceae.g__Gracilimonas
## 2023-03-15 19:53:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Thermobacillus
## 2023-03-15 19:53:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Phycodnaviridae.g__Phaeovirus
## 2023-03-15 19:53:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Candidatus_Evansia
## 2023-03-15 19:53:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Gillisia
## 2023-03-15 19:53:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Zetaproteobacteria.o__Mariprofundales.f__Mariprofundaceae.g__Mariprofundus
## 2023-03-15 19:53:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Pseudopedobacter
## 2023-03-15 19:53:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Promicromonospora
## 2023-03-15 19:53:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Acidaminococcales.f__Acidaminococcaceae.g__Succinispira
## 2023-03-15 19:53:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Lechevalieria
## 2023-03-15 19:53:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Variovorax
## 2023-03-15 19:53:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Prosthecomicrobium
## 2023-03-15 19:53:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylosarcina
## 2023-03-15 19:53:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Erythrobacteraceae.g__Porphyrobacter
## 2023-03-15 19:53:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Thermomonosporaceae.g__Spirillospora
## 2023-03-15 19:53:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Baculoviridae.g__Alphabaculovirus
## 2023-03-15 19:53:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Veillonellales.f__Veillonellaceae.g__Dialister
## 2023-03-15 19:53:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Cystobacteraceae.g__Cystobacter
## 2023-03-15 19:53:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Streptosporangium
## 2023-03-15 19:53:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Pandoraea
## 2023-03-15 19:53:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halorubrum
## 2023-03-15 19:53:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Helcococcus
## 2023-03-15 19:53:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Stenoxybacter
## 2023-03-15 19:53:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Aurantimonadaceae.g__Martelella
## 2023-03-15 19:53:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Hamiltonella
## 2023-03-15 19:53:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Phyllobacterium
## 2023-03-15 19:53:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halosimplex
## 2023-03-15 19:53:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Xenorhabdus
## 2023-03-15 19:53:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Dehalococcoidia.o__Dehalococcoidales.f__Dehalococcoidaceae.g__Dehalococcoides
## 2023-03-15 19:53:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Veillonellales.f__Veillonellaceae.g__Veillonella
## 2023-03-15 19:53:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseobacter
## 2023-03-15 19:53:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Salinisphaerales.f__Salinisphaeraceae.g__Salinisphaera
## 2023-03-15 19:53:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Alcaligenes
## 2023-03-15 19:53:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Paracoccus
## 2023-03-15 19:53:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Chlorobium
## 2023-03-15 19:53:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Phycodnaviridae.g__Chlorovirus
## 2023-03-15 19:53:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfurellales.f__Desulfurellaceae.g__Desulfurella
## 2023-03-15 19:53:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Eubacterium
## 2023-03-15 19:53:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Carnimonas
## 2023-03-15 19:53:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Nitrospirae.c__Nitrospira.o__Nitrospirales.f__Nitrospiraceae.g__Candidatus_Magnetobacterium
## 2023-03-15 19:53:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Thermotogaceae.g__Thermotoga
## 2023-03-15 19:53:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Geodermatophilales.f__Geodermatophilaceae.g__Blastococcus
## 2023-03-15 19:53:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Rhodoplanes
## 2023-03-15 19:53:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Catenuloplanes
## 2023-03-15 19:53:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Pseudarthrobacter
## 2023-03-15 19:53:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Pyrodictiaceae.g__Pyrolobus
## 2023-03-15 19:53:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Regiella
## 2023-03-15 19:53:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Poxviridae.g__Betaentomopoxvirus
## 2023-03-15 19:53:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Lactobacillaceae.g__Lactobacillus
## 2023-03-15 19:53:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Shigella
## 2023-03-15 19:53:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Azohydromonas
## 2023-03-15 19:53:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Chlorobaculum
## 2023-03-15 19:53:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.g__Lawsonella
## 2023-03-15 19:53:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Halothece
## 2023-03-15 19:53:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Actinotalea
## 2023-03-15 19:53:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Moraxellaceae.g__Enhydrobacter
## 2023-03-15 19:53:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Intestinibacter
## 2023-03-15 19:53:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Streptococcaceae.g__Streptococcus
## 2023-03-15 19:53:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Candidatus_Cloacimonetes.g__Candidatus_Cloacimonas
## 2023-03-15 19:53:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Borreliaceae.g__Borrelia
## 2023-03-15 19:53:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Acidaminococcales.f__Acidaminococcaceae.g__Phascolarctobacterium
## 2023-03-15 19:53:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Bibersteinia
## 2023-03-15 19:53:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Thermosulfurimonas
## 2023-03-15 19:53:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Carnobacteriaceae.g__Allofustis
## 2023-03-15 19:53:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophaceae.g__Desulfobacca
## 2023-03-15 19:53:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Nafulsella
## 2023-03-15 19:53:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Amoebophilaceae.g__Candidatus_Cardinium
## 2023-03-15 19:53:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Stomatobaculum
## 2023-03-15 19:53:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Tannerella
## 2023-03-15 19:53:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Adenoviridae.g__Aviadenovirus
## 2023-03-15 19:53:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Desulfurococcaceae.g__Staphylothermus
## 2023-03-15 19:53:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Ventosimonadaceae.g__Ventosimonas
## 2023-03-15 19:53:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Candidatus_Endolissoclinum
## 2023-03-15 19:53:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Pusillimonas
## 2023-03-15 19:53:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.g__Candidatus_Sulcia
## 2023-03-15 19:53:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Cobetia
## 2023-03-15 19:53:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Mobiluncus
## 2023-03-15 19:53:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Nesterenkonia
## 2023-03-15 19:53:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Pleomorphomonas
## 2023-03-15 19:53:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Anaplasma
## 2023-03-15 19:53:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Wenzhouxiangellaceae.g__Wenzhouxiangella
## 2023-03-15 19:53:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Pimelobacter
## 2023-03-15 19:53:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Dyadobacter
## 2023-03-15 19:53:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Alcanivoracaceae.g__Kangiella
## 2023-03-15 19:53:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Varicellovirus
## 2023-03-15 19:53:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Nitrospirae.c__Nitrospira.o__Nitrospirales.f__Nitrospiraceae.g__Leptospirillum
## 2023-03-15 19:53:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Thalassobacillus
## 2023-03-15 19:53:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Thalassospira
## 2023-03-15 19:53:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Tymovirales.f__Tymoviridae.g__Tymovirus
## 2023-03-15 19:53:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanococci.o__Methanococcales.f__Methanocaldococcaceae.g__Methanocaldococcus
## 2023-03-15 19:53:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Pseudonocardia
## 2023-03-15 19:53:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Caldalkalibacillus
## 2023-03-15 19:53:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Roseateles
## 2023-03-15 19:53:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Taylorella
## 2023-03-15 19:53:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Winogradskyella
## 2023-03-15 19:53:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methanosarcinaceae.g__Methanomethylovorans
## 2023-03-15 19:53:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Aerococcaceae.g__Facklamia
## 2023-03-15 19:53:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Nannocystaceae.g__Plesiocystis
## 2023-03-15 19:53:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Neisseria
## 2023-03-15 19:53:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Rickettsiaceae.g__Orientia
## 2023-03-15 19:53:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Aerococcaceae.g__Abiotrophia
## 2023-03-15 19:53:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Labrenzia
## 2023-03-15 19:53:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Edwardsiella
## 2023-03-15 19:53:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Sodalis
## 2023-03-15 19:53:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Lutibaculum
## 2023-03-15 19:53:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.g__Fangia
## 2023-03-15 19:53:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Leptothrix
## 2023-03-15 19:53:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Sulfolobales.f__Sulfolobaceae.g__Sulfolobus
## 2023-03-15 19:53:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Acidihalobacter
## 2023-03-15 19:53:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Micrococcus
## 2023-03-15 19:53:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Alicycliphilus
## 2023-03-15 19:53:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Lachnoclostridium
## 2023-03-15 19:53:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Terrimonas
## 2023-03-15 19:53:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prolixibacteraceae.g__Draconibacterium
## 2023-03-15 19:53:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfotalea
## 2023-03-15 19:53:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Syntrophomonadaceae.g__Syntrophomonas
## 2023-03-15 19:53:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Jonquetella
## 2023-03-15 19:53:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Stenotrophomonas
## 2023-03-15 19:53:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Caldimonas
## 2023-03-15 19:53:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiales_Family_XVII._Incertae_Sedis.g__Thermaerobacter
## 2023-03-15 19:53:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Tyzzerella
## 2023-03-15 19:53:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Marinobacterium
## 2023-03-15 19:53:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Cylindrospermopsis
## 2023-03-15 19:53:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Aminiphilus
## 2023-03-15 19:53:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Serinicoccus
## 2023-03-15 19:53:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfonatronaceae.g__Desulfonatronum
## 2023-03-15 19:53:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Nitratireductor
## 2023-03-15 19:53:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Trueperella
## 2023-03-15 19:53:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Staphylococcaceae.g__Salinicoccus
## 2023-03-15 19:53:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfovibrionaceae.g__Desulfocurvus
## 2023-03-15 19:53:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Finegoldia
## 2023-03-15 19:53:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.g__Elioraea
## 2023-03-15 19:53:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Calditerrivibrio
## 2023-03-15 19:53:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Devosia
## 2023-03-15 19:53:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Lysinibacillus
## 2023-03-15 19:53:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Caulobacterales.f__Caulobacteraceae.g__Asticcacaulis
## 2023-03-15 19:53:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Heliobacteriaceae.g__Heliobacterium
## 2023-03-15 19:53:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Pseudacidovorax
## 2023-03-15 19:53:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Alteromonas
## 2023-03-15 19:53:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Clostridioides
## 2023-03-15 19:53:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Saccharicrinis
## 2023-03-15 19:53:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Sicinivirus
## 2023-03-15 19:53:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Catenulisporales.f__Catenulisporaceae.g__Catenulispora
## 2023-03-15 19:53:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Hyphomicrobium
## 2023-03-15 19:53:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiales_Family_XIII._Incertae_Sedis.g__Casaltella
## 2023-03-15 19:53:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Moorella
## 2023-03-15 19:53:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Enterobacter
## 2023-03-15 19:53:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.g__Deferrisoma
## 2023-03-15 19:53:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Kosmotogales.f__Kosmotogaceae.g__Kosmotoga
## 2023-03-15 19:53:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Planctopirus
## 2023-03-15 19:53:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinifilaceae.g__Marinifilum
## 2023-03-15 19:53:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinoalloteichus
## 2023-03-15 19:53:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Leuconostocaceae.g__Fructobacillus
## 2023-03-15 19:53:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Schlesneria
## 2023-03-15 19:53:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Piscirickettsia
## 2023-03-15 19:53:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Delftia
## 2023-03-15 19:53:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Retroviridae.g__Betaretrovirus
## 2023-03-15 19:53:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Luteimonas
## 2023-03-15 19:53:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Prochlorales.f__Prochlorococcaceae.g__Prochlorococcus
## 2023-03-15 19:53:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Mageeibacillus
## 2023-03-15 19:53:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Midichloriaceae.g__Candidatus_Midichloria
## 2023-03-15 19:53:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Citricoccus
## 2023-03-15 19:53:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Dokdonia
## 2023-03-15 19:53:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Atopobiaceae.g__Atopobium
## 2023-03-15 19:53:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Nepovirus
## 2023-03-15 19:53:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Retroviridae.g__Alpharetrovirus
## 2023-03-15 19:53:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Caldilineae.o__Caldilineales.f__Caldilineaceae.g__Caldilinea
## 2023-03-15 19:53:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Frigoribacterium
## 2023-03-15 19:53:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Thermovirga
## 2023-03-15 19:53:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Sulfurimonas
## 2023-03-15 19:53:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Labilitrichaceae.g__Labilithrix
## 2023-03-15 19:53:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Propionicicella
maaslin_without_group_likely <- function_Maaslin2(df_ACC_Voom_SNM, "Likely_combined", "Temp/without_group_likely")
## [1] "Warning: Deleting existing log file: Temp/without_group_likely/maaslin2.log"
## 2023-03-15 19:53:48 INFO::Writing function arguments to log file
## 2023-03-15 19:53:48 INFO::Verifying options selected are valid
## 2023-03-15 19:53:48 INFO::Determining format of input files
## 2023-03-15 19:53:48 INFO::Input format is data samples as rows and metadata samples as rows
## 2023-03-15 19:53:48 INFO::Formula for random effects: expr ~ (1 | SEX) + (1 | Ethnicity_Race) + (1 | AGE) + (1 | Neoplasm_Status) + (1 | Clinical_Status_3_Mo_Post.Op) + (1 | Surgical_margin) + (1 | ATYPICAL_MITOTIC_FIGURES)
## 2023-03-15 19:53:48 INFO::Formula for fixed effects: expr ~  Likely_combined
## 2023-03-15 19:53:48 INFO::Filter data based on min abundance and min prevalence
## 2023-03-15 19:53:48 INFO::Total samples in data: 77
## 2023-03-15 19:53:48 INFO::Min samples required with min abundance for a feature not to be filtered: 0.000000
## 2023-03-15 19:53:48 INFO::Total filtered features: 80
## 2023-03-15 19:53:48 INFO::Filtered feature names from abundance and prevalence filtering: k__Viruses.f__Baculoviridae.g__Deltabaculovirus, k__Viruses.o__Caudovirales.f__Myoviridae.g__I3likevirus, k__Viruses.f__Anelloviridae.g__Gammatorquevirus, k__Viruses.f__Phycodnaviridae.g__Coccolithovirus, k__Viruses.f__Poxviridae.g__Capripoxvirus, k__Viruses.o__Mononegavirales.f__Nyamiviridae.g__Nyavirus, k__Viruses.f__Chrysoviridae.g__Chrysovirus, k__Viruses.g__Emaravirus, k__Viruses.f__Poxviridae.g__Yatapoxvirus, k__Viruses.f__Poxviridae.g__Orthopoxvirus, k__Viruses.o__Caudovirales.f__Siphoviridae.g__L5likevirus, k__Viruses.f__Hytrosaviridae.g__Muscavirus, k__Viruses.f__Closteroviridae.g__Crinivirus, k__Viruses.f__Iridoviridae.g__Iridovirus, k__Viruses.o__Caudovirales.f__Myoviridae.g__Cp220likevirus, k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Halobiforma, k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Fervidicella, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Wigglesworthia, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Cedecea, k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Cystobacteraceae.g__Hyalangium, k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Imtechella, k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Fibrisoma, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Nitrococcus, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Coxiellaceae.g__Diplorickettsia, k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Rikenellaceae.g__Rikenella, k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Caminibacter, k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Belliella, k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinosynnema, k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natronobacterium, k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Bifidobacteriales.f__Bifidobacteriaceae.g__Alloscardovia, k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Fusobacteriaceae.g__Cetobacterium, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Pelomonas, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Hahellaceae.g__Endozoicomonas, k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanolacinia, k__Archaea.p__Euryarchaeota.c__Methanococci.o__Methanococcales.f__Methanocaldococcaceae.g__Methanotorris, k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudophaeobacter, k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Hydrogenothermaceae.g__Persephonella, k__Archaea.p__Euryarchaeota.c__Methanococci.o__Methanococcales.f__Methanococcaceae.g__Methanothermococcus, k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pelagibaca, k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Raphidiopsis, k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Flaviramulus, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Blochmannia, k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Gorillibacterium, k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Methanomassiliicoccales.f__Methanomassiliicoccaceae.g__Candidatus_Methanoplasma, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Nevskia, k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Bhargavaea, k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halomicrobium, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Oleispira, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Brenneria, k__Bacteria.p__Chrysiogenetes.c__Chrysiogenetes.o__Chrysiogenales.f__Chrysiogenaceae.g__Chrysiogenes, k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Gottschalkia, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomicrobium, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Candidatus_Glomeribacter, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Moellerella, k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Microchaetaceae.g__Microchaete, k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Oxobacter, k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Aphanizomenon, k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Lebetimonas, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Morococcus, k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Ulvibacter, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Marinagarivorans, k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Solitalea, k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Thermoplasmatales.f__Ferroplasmaceae.g__Ferroplasma, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Gilvimarinus, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Dechloromonas, k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Gloeocapsa, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Azovibrio, k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Sulfuricurvum, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Leminorella, k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Geobacteraceae.g__Geoalkalibacter, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Sphaerotilus, k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Psychrobacillus, k__Bacteria.p__Thermotogae.c__Thermotogae.o__Petrotogales.g__Petrotoga, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Halieaceae.g__Haliea, k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Odoribacteraceae.g__Butyricimonas, k__Bacteria.p__Chloroflexi.c__Ardenticatenia.o__Ardenticatenales.f__Ardenticatenaceae.g__Ardenticatena, k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Beijerinckia, k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Aphanocapsa, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Thauera, k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Paucisalibacillus
## 2023-03-15 19:53:49 INFO::Total filtered features with variance filtering: 0
## 2023-03-15 19:53:49 INFO::Filtered feature names from variance filtering:
## 2023-03-15 19:53:49 INFO::Running selected normalization method: NONE
## 2023-03-15 19:53:49 INFO::Applying z-score to standardize continuous metadata
## 2023-03-15 19:53:49 INFO::Running selected transform method: NONE
## 2023-03-15 19:53:49 INFO::Running selected analysis method: LM
## 2023-03-15 19:53:49 INFO::Creating cluster of 6 R processes
## 2023-03-15 19:54:20 INFO::Counting total values for each feature
## 2023-03-15 19:54:20 WARNING::Deleting existing residuals file: Temp/without_group_likely/residuals.rds
## 2023-03-15 19:54:20 INFO::Writing residuals to file Temp/without_group_likely/residuals.rds
## 2023-03-15 19:54:20 WARNING::Deleting existing fitted file: Temp/without_group_likely/fitted.rds
## 2023-03-15 19:54:20 INFO::Writing fitted values to file Temp/without_group_likely/fitted.rds
## 2023-03-15 19:54:20 WARNING::Deleting existing ranef file: Temp/without_group_likely/ranef.rds
## 2023-03-15 19:54:20 INFO::Writing extracted random effects to file Temp/without_group_likely/ranef.rds
## 2023-03-15 19:54:20 INFO::Writing all results to file (ordered by increasing q-values): Temp/without_group_likely/all_results.tsv
## 2023-03-15 19:54:20 INFO::Writing the significant results (those which are less than or equal to the threshold of 0.250000 ) to file (ordered by increasing q-values): Temp/without_group_likely/significant_results.tsv
## 2023-03-15 19:54:20 INFO::Writing heatmap of significant results to file: Temp/without_group_likely/heatmap.pdf
## Warning in xtfrm.data.frame(x): cannot xtfrm data frames
## [1] "There is not enough metadata in the associations to create a heatmap plot. Please review the associations in text output file."
## 2023-03-15 19:54:20 INFO::Writing association plots (one for each significant association) to output folder: Temp/without_group_likely
## 2023-03-15 19:54:20 INFO::Plotting associations from most to least significant, grouped by metadata
## 2023-03-15 19:54:20 INFO::Plotting data for metadata number 1, Likely_combined
## 2023-03-15 19:54:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Sfi1unalikevirus
## 2023-03-15 19:54:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__C2likevirus
## 2023-03-15 19:54:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Poxviridae.g__Parapoxvirus
## 2023-03-15 19:54:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Bicaudaviridae.g__Bicaudavirus
## 2023-03-15 19:54:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Caulimoviridae.g__Badnavirus
## 2023-03-15 19:54:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Papillomaviridae.g__Betapapillomavirus
## 2023-03-15 19:54:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Bcep22likevirus
## 2023-03-15 19:54:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Ligamenvirales.f__Lipothrixviridae.g__Deltalipothrixvirus
## 2023-03-15 19:54:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Poxviridae.g__Cervidpoxvirus
## 2023-03-15 19:54:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phikmvlikevirus
## 2023-03-15 19:54:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Papillomaviridae.g__Mupapillomavirus
## 2023-03-15 19:54:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Lambdalikevirus
## 2023-03-15 19:54:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Papillomaviridae.g__Phipapillomavirus
## 2023-03-15 19:54:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Anelloviridae.g__Alphatorquevirus
## 2023-03-15 19:54:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.g__Pithovirus
## 2023-03-15 19:54:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Barnyardlikevirus
## 2023-03-15 19:54:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__P100virus
## 2023-03-15 19:54:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Reoviridae.g__Cypovirus
## 2023-03-15 19:54:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Iltovirus
## 2023-03-15 19:54:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Closteroviridae.g__Closterovirus
## 2023-03-15 19:54:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Viunalikevirus
## 2023-03-15 19:54:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Phicbklikevirus
## 2023-03-15 19:54:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Fuselloviridae.g__Alphafusellovirus
## 2023-03-15 19:54:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Retroviridae.g__Lentivirus
## 2023-03-15 19:54:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Luteoviridae.g__Polerovirus
## 2023-03-15 19:54:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Andromedalikevirus
## 2023-03-15 19:54:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Iridoviridae.g__Lymphocystivirus
## 2023-03-15 19:54:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Poxviridae.g__Avipoxvirus
## 2023-03-15 19:54:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Ligamenvirales.f__Rudiviridae.g__Rudivirus
## 2023-03-15 19:54:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Closteroviridae.g__Ampelovirus
## 2023-03-15 19:54:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Herpesvirales.f__Malacoherpesviridae.g__Ostreavirus
## 2023-03-15 19:54:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Tymovirales.f__Betaflexiviridae.g__Foveavirus
## 2023-03-15 19:54:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.g__Bacilladnavirus
## 2023-03-15 19:54:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Skunalikevirus
## 2023-03-15 19:54:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Phikzlikevirus
## 2023-03-15 19:54:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Orthomyxoviridae.g__Influenzavirus_C
## 2023-03-15 19:54:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phi29likevirus
## 2023-03-15 19:54:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Caulimoviridae.g__Cavemovirus
## 2023-03-15 19:54:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Anelloviridae.g__Betatorquevirus
## 2023-03-15 19:54:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Caulimoviridae.g__Caulimovirus
## 2023-03-15 19:54:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Pbunalikevirus
## 2023-03-15 19:54:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Reoviridae.g__Phytoreovirus
## 2023-03-15 19:54:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Bromoviridae.g__Alfamovirus
## 2023-03-15 19:54:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Sp6likevirus
## 2023-03-15 19:54:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Sphaerolipoviridae.g__Gammasphaerolipovirus
## 2023-03-15 19:54:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Flaviviridae.g__Pegivirus
## 2023-03-15 19:54:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Mononegavirales.f__Rhabdoviridae.g__Vesiculovirus
## 2023-03-15 19:54:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Mononegavirales.f__Rhabdoviridae.g__Lyssavirus
## 2023-03-15 19:54:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Hepadnaviridae.g__Orthohepadnavirus
## 2023-03-15 19:54:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Tymovirales.f__Alphaflexiviridae.g__Allexivirus
## 2023-03-15 19:54:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Parvoviridae.g__Ambidensovirus
## 2023-03-15 19:54:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Comovirus
## 2023-03-15 19:54:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.g__Polemovirus
## 2023-03-15 19:54:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Leviviridae.g__Levivirus
## 2023-03-15 19:54:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phieco32likevirus
## 2023-03-15 19:54:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Reoviridae.g__Aquareovirus
## 2023-03-15 19:54:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Bromoviridae.g__Ilarvirus
## 2023-03-15 19:54:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Narnaviridae.g__Narnavirus
## 2023-03-15 19:54:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Totiviridae.g__Totivirus
## 2023-03-15 19:54:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Chilikevirus
## 2023-03-15 19:54:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Potyviridae.g__Tritimovirus
## 2023-03-15 19:54:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viroids.f__Pospiviroidae.g__Coleviroid
## 2023-03-15 19:54:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Papillomaviridae.g__Dyopipapillomavirus
## 2023-03-15 19:54:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Siccibacter
## 2023-03-15 19:54:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Neosynechococcus
## 2023-03-15 19:54:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Dolichospermum
## 2023-03-15 19:54:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Ponticaulis
## 2023-03-15 19:54:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Altibacter
## 2023-03-15 19:54:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Methanomassiliicoccales.f__Methanomassiliicoccaceae.g__Candidatus_Methanomethylophilus
## 2023-03-15 19:54:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Haloarcula
## 2023-03-15 19:54:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Nitritalea
## 2023-03-15 19:54:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Mangrovibacter
## 2023-03-15 19:54:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Thalassotalea
## 2023-03-15 19:54:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Pseudoramibacter
## 2023-03-15 19:54:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Reinekea
## 2023-03-15 19:54:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfospira
## 2023-03-15 19:54:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Arenitalea
## 2023-03-15 19:54:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Thermoactinomycetaceae.g__Shimazuella
## 2023-03-15 19:54:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Gaetbulibacter
## 2023-03-15 19:54:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Basilea
## 2023-03-15 19:54:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Alicyclobacillaceae.g__Effusibacillus
## 2023-03-15 19:54:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitinibacter
## 2023-03-15 19:54:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Myxosarcina
## 2023-03-15 19:54:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Gayadomonas
## 2023-03-15 19:54:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomarinum
## 2023-03-15 19:54:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Jeotgalibacillus
## 2023-03-15 19:54:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Zymobacter
## 2023-03-15 19:54:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Paeniglutamicibacter
## 2023-03-15 19:54:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halobellus
## 2023-03-15 19:54:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Cyclobacterium
## 2023-03-15 19:54:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Olivibacter
## 2023-03-15 19:54:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Sideroxydans
## 2023-03-15 19:54:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Sediminibacillus
## 2023-03-15 19:54:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methanosarcinaceae.g__Methanohalobium
## 2023-03-15 19:54:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Thioalkalimicrobium
## 2023-03-15 19:54:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Saccharospirillum
## 2023-03-15 19:54:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Robiginitalea
## 2023-03-15 19:54:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Caldimicrobium
## 2023-03-15 19:54:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Actinopolymorpha
## 2023-03-15 19:54:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Candidatus_Phaeomarinobacter
## 2023-03-15 19:54:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Candidatus_Koribacter
## 2023-03-15 19:54:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermabacteraceae.g__Helcobacillus
## 2023-03-15 19:54:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Centipeda
## 2023-03-15 19:54:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Nocardiopsaceae.g__Allosalinactinospora
## 2023-03-15 19:54:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ponticoccus
## 2023-03-15 19:54:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halogranum
## 2023-03-15 19:54:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Nautilia
## 2023-03-15 19:54:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Obesumbacterium
## 2023-03-15 19:54:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Desulfurobacteriales.f__Desulfurobacteriaceae.g__Thermovibrio
## 2023-03-15 19:54:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Aliiroseovarius
## 2023-03-15 19:54:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halobacterium
## 2023-03-15 19:54:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.g__Thermosulfidibacter
## 2023-03-15 19:54:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Stigonematales.g__Mastigocladopsis
## 2023-03-15 19:54:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Thaumarchaeota.o__Nitrosopumilales.f__Nitrosopumilaceae.g__Candidatus_Nitrosoarchaeum
## 2023-03-15 19:54:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Mesoaciditogales.f__Mesoaciditogaceae.g__Mesoaciditoga
## 2023-03-15 19:54:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Wolinella
## 2023-03-15 19:54:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Halopiger
## 2023-03-15 19:54:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Thaumarchaeota.o__Nitrosopumilales.f__Nitrosopumilaceae.g__Nitrosopumilus
## 2023-03-15 19:54:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Marinococcus
## 2023-03-15 19:54:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfobacula
## 2023-03-15 19:54:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Spongiibacteraceae.g__Dasania
## 2023-03-15 19:54:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Thermincola
## 2023-03-15 19:54:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Shuttleworthia
## 2023-03-15 19:54:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylovorus
## 2023-03-15 19:54:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.o__Thermomicrobiales.f__Thermomicrobiaceae.g__Thermomicrobium
## 2023-03-15 19:54:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halogeometricum
## 2023-03-15 19:54:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Thermocrinis
## 2023-03-15 19:54:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Arhodomonas
## 2023-03-15 19:54:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanofollis
## 2023-03-15 19:54:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Mesonia
## 2023-03-15 19:54:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Basfia
## 2023-03-15 19:54:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Candidatus_Atelocyanobacterium
## 2023-03-15 19:54:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Thalassolituus
## 2023-03-15 19:54:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Allobaculum
## 2023-03-15 19:54:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Coriobacterium
## 2023-03-15 19:54:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Amphritea
## 2023-03-15 19:54:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Haloplanus
## 2023-03-15 19:54:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Flagellimonas
## 2023-03-15 19:54:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Thermoproteales.f__Thermoproteaceae.g__Vulcanisaeta
## 2023-03-15 19:54:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Spongiibacteraceae.g__Zhongshania
## 2023-03-15 19:54:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Bermanella
## 2023-03-15 19:54:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Afifella
## 2023-03-15 19:54:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Rummeliibacillus
## 2023-03-15 19:54:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfurivibrio
## 2023-03-15 19:54:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Salinibacillus
## 2023-03-15 19:54:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Pseudobutyrivibrio
## 2023-03-15 19:54:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Kosmotogales.f__Kosmotogaceae.g__Mesotoga
## 2023-03-15 19:54:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Paracaedibacteraceae.g__Candidatus_Odyssella
## 2023-03-15 19:54:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Holdemania
## 2023-03-15 19:54:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Balneatrix
## 2023-03-15 19:54:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Dielma
## 2023-03-15 19:54:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Terribacillus
## 2023-03-15 19:54:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Acidilobales.f__Acidilobaceae.g__Acidilobus
## 2023-03-15 19:54:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanoplanus
## 2023-03-15 19:54:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseibacterium
## 2023-03-15 19:54:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Lentzea
## 2023-03-15 19:54:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Halolactibacillus
## 2023-03-15 19:54:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Lacimicrobium
## 2023-03-15 19:54:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Halostagnicola
## 2023-03-15 19:54:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Adlercreutzia
## 2023-03-15 19:54:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Legionellaceae.g__Tatlockia
## 2023-03-15 19:54:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Candidatus_Photodesmus
## 2023-03-15 19:54:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfonatronospira
## 2023-03-15 19:54:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Nereida
## 2023-03-15 19:54:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Cloacibacillus
## 2023-03-15 19:54:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Thaumarchaeota.g__Candidatus_Nitrosotenuis
## 2023-03-15 19:54:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Thermoproteales.f__Thermoproteaceae.g__Caldivirga
## 2023-03-15 19:54:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Subdoligranulum
## 2023-03-15 19:54:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Circoviridae.g__Gyrovirus
## 2023-03-15 19:54:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__T5likevirus
## 2023-03-15 19:54:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Cheravirus
## 2023-03-15 19:54:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Sfi21dtunalikevirus
## 2023-03-15 19:54:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Natronomonas
## 2023-03-15 19:54:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanoregulaceae.g__Methanolinea
## 2023-03-15 19:54:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanoculleus
## 2023-03-15 19:54:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Tymovirales.f__Betaflexiviridae.g__Trichovirus
## 2023-03-15 19:54:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__N4likevirus
## 2023-03-15 19:54:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Archaeoglobi.o__Archaeoglobales.f__Archaeoglobaceae.g__Ferroglobus
## 2023-03-15 19:54:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.g__Hoyosella
## 2023-03-15 19:54:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanoregulaceae.g__Methanosphaerula
## 2023-03-15 19:54:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Inoviridae.g__Inovirus
## 2023-03-15 19:54:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Virgaviridae.g__Pecluvirus
## 2023-03-15 19:54:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Sellimonas
## 2023-03-15 19:54:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Bunyaviridae.g__Hantavirus
## 2023-03-15 19:54:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Thalassomonas
## 2023-03-15 19:54:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Gramella
## 2023-03-15 19:54:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Papillomaviridae.g__Gammapapillomavirus
## 2023-03-15 19:54:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Sedimenticola
## 2023-03-15 19:54:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natronorubrum
## 2023-03-15 19:54:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Catenovulum
## 2023-03-15 19:54:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Salinimonas
## 2023-03-15 19:54:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Aromatoleum
## 2023-03-15 19:54:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Pyrococcus
## 2023-03-15 19:54:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Prosthecochloris
## 2023-03-15 19:54:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halanaeroarchaeum
## 2023-03-15 19:54:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Microvirgula
## 2023-03-15 19:54:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Thermodesulfatator
## 2023-03-15 19:54:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.g__Aciduliprofundum
## 2023-03-15 19:54:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Puniceibacterium
## 2023-03-15 19:54:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Aliihoeflea
## 2023-03-15 19:54:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Terasakiella
## 2023-03-15 19:54:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Salimicrobium
## 2023-03-15 19:54:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Candidatus_Methylopumilus
## 2023-03-15 19:54:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Nisaea
## 2023-03-15 19:54:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.g__Thermobaculum
## 2023-03-15 19:54:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Coprobacter
## 2023-03-15 19:54:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.o__Haloplasmatales.f__Haloplasmataceae.g__Haloplasma
## 2023-03-15 19:54:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Rudanella
## 2023-03-15 19:54:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylothermaceae.g__Methylohalobius
## 2023-03-15 19:54:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiocystis
## 2023-03-15 19:54:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Deferribacter
## 2023-03-15 19:54:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Rubidibacter
## 2023-03-15 19:54:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Cryomorphaceae.g__Owenweeksia
## 2023-03-15 19:54:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Yokenella
## 2023-03-15 19:54:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prolixibacteraceae.g__Prolixibacter
## 2023-03-15 19:54:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Youngiibacter
## 2023-03-15 19:54:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Agarivorans
## 2023-03-15 19:54:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Acidobacteria.c__Solibacteres.o__Solibacterales.g__Bryobacter
## 2023-03-15 19:54:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Azonexus
## 2023-03-15 19:54:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Tolumonas
## 2023-03-15 19:54:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.c__Spartobacteria.g__Candidatus_Xiphinematobacter
## 2023-03-15 19:54:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Leeia
## 2023-03-15 19:54:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Renibacterium
## 2023-03-15 19:54:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Leeuwenhoekiella
## 2023-03-15 19:54:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Gynuella
## 2023-03-15 19:54:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Marinospirillum
## 2023-03-15 19:54:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Marinimicrobium
## 2023-03-15 19:54:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Pyrodictiaceae.g__Pyrodictium
## 2023-03-15 19:54:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Thermotogaceae.g__Pseudothermotoga
## 2023-03-15 19:54:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Parvularculales.f__Parvularculaceae.g__Parvularcula
## 2023-03-15 19:54:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Salinivibrio
## 2023-03-15 19:54:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Richelia
## 2023-03-15 19:54:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Pelodictyon
## 2023-03-15 19:54:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Chloroflexia.o__Chloroflexales.f__Oscillochloridaceae.g__Oscillochloris
## 2023-03-15 19:54:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halarchaeum
## 2023-03-15 19:54:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.f__Competibacteraceae.g__Candidatus_Competibacter
## 2023-03-15 19:54:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Lymphocryptovirus
## 2023-03-15 19:54:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halalkalicoccus
## 2023-03-15 19:54:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Cyanobacterium
## 2023-03-15 19:54:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Flexilinea
## 2023-03-15 19:54:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatirhabdium
## 2023-03-15 19:54:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Citreicella
## 2023-03-15 19:54:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Chelonobacter
## 2023-03-15 19:54:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Nocardiopsaceae.g__Streptomonospora
## 2023-03-15 19:54:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Dactylococcopsis
## 2023-03-15 19:54:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Maritalea
## 2023-03-15 19:54:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.g__Methyloceanibacter
## 2023-03-15 19:54:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Actinotignum
## 2023-03-15 19:54:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Ignavibacteriae.c__Ignavibacteria.o__Ignavibacteriales.f__Melioribacteraceae.g__Melioribacter
## 2023-03-15 19:54:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Croceibacter
## 2023-03-15 19:54:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.g__Tenuivirus
## 2023-03-15 19:54:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Crocinitomicaceae.g__Crocinitomix
## 2023-03-15 19:54:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Bromoviridae.g__Cucumovirus
## 2023-03-15 19:54:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methanosarcinaceae.g__Methanohalophilus
## 2023-03-15 19:54:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Pseudaminobacter
## 2023-03-15 19:54:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Alkalilimnicola
## 2023-03-15 19:54:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Ammonifex
## 2023-03-15 19:54:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Wohlfahrtiimonas
## 2023-03-15 19:54:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Ignatzschineria
## 2023-03-15 19:54:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfotignum
## 2023-03-15 19:54:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Thioploca
## 2023-03-15 19:54:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Cryocola
## 2023-03-15 19:54:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Paraoerskovia
## 2023-03-15 19:54:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Stanieria
## 2023-03-15 19:54:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Microcoleus
## 2023-03-15 19:54:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.g__Nitratiruptor
## 2023-03-15 19:54:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Mimiviridae.g__Mimivirus
## 2023-03-15 19:54:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Halotalea
## 2023-03-15 19:54:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Poxviridae.g__Alphaentomopoxvirus
## 2023-03-15 19:54:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Aerococcaceae.g__Eremococcus
## 2023-03-15 19:54:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Acaricomes
## 2023-03-15 19:54:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanoregulaceae.g__Methanoregula
## 2023-03-15 19:54:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Geovibrio
## 2023-03-15 19:54:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Aurantimonadaceae.g__Fulvimarina
## 2023-03-15 19:54:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Blastopirellula
## 2023-03-15 19:54:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Holdemanella
## 2023-03-15 19:54:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Cryobacterium
## 2023-03-15 19:54:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Thaumarchaeota.c__Nitrososphaeria.o__Nitrososphaerales.f__Nitrososphaeraceae.g__Nitrososphaera
## 2023-03-15 19:54:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Kerstersia
## 2023-03-15 19:54:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Amphibacillus
## 2023-03-15 19:54:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Moranella
## 2023-03-15 19:54:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Candidatus_Ruthia
## 2023-03-15 19:54:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Deefgea
## 2023-03-15 19:54:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Aestuariivita
## 2023-03-15 19:54:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Enterovirus
## 2023-03-15 19:54:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Pleurocapsa
## 2023-03-15 19:54:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Fermentimonas
## 2023-03-15 19:54:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Gallionella
## 2023-03-15 19:54:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Riesia
## 2023-03-15 19:54:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Hydrogenobacter
## 2023-03-15 19:54:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Longilinea
## 2023-03-15 19:54:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Spirochaetaceae.g__Treponema
## 2023-03-15 19:54:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_IV._Incertae_Sedis.g__Mahella
## 2023-03-15 19:54:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Wolbachia
## 2023-03-15 19:54:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halanaerobiaceae.g__Halothermothrix
## 2023-03-15 19:54:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Leadbetterella
## 2023-03-15 19:54:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Herbiconiux
## 2023-03-15 19:54:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Thermopetrobacter
## 2023-03-15 19:54:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Marinilabilia
## 2023-03-15 19:54:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Chloroherpeton
## 2023-03-15 19:54:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.o__Bacteroidetes_Order_II._Incertae_sedis.f__Rhodothermaceae.g__Salisaeta
## 2023-03-15 19:54:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Siansivirga
## 2023-03-15 19:54:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Bdellovibrionales.f__Halobacteriovoraceae.g__Halobacteriovorax
## 2023-03-15 19:54:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Campylobacteraceae.g__Sulfurospirillum
## 2023-03-15 19:54:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Glutamicibacter
## 2023-03-15 19:54:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Carnobacteriaceae.g__Jeotgalibaca
## 2023-03-15 19:54:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Simiduia
## 2023-03-15 19:54:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudorhodobacter
## 2023-03-15 19:54:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Isosphaeraceae.g__Isosphaera
## 2023-03-15 19:54:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Legionellaceae.g__Fluoribacter
## 2023-03-15 19:54:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Salipiger
## 2023-03-15 19:54:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Hellea
## 2023-03-15 19:54:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Mannheimia
## 2023-03-15 19:54:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Thermanaerothrix
## 2023-03-15 19:54:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Chroococcidiopsis
## 2023-03-15 19:54:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Opitutales.f__Opitutaceae.g__Cephaloticoccus
## 2023-03-15 19:54:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Rhodothermaeota.c__Balneolia.o__Balneolales.f__Balneolaceae.g__Balneola
## 2023-03-15 19:54:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Sandarakinorhabdus
## 2023-03-15 19:54:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermodesulfobiaceae.g__Thermodesulfobium
## 2023-03-15 19:54:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Myxococcaceae.g__Corallococcus
## 2023-03-15 19:54:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Silanimonas
## 2023-03-15 19:54:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Pyramidobacter
## 2023-03-15 19:54:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Mariniradius
## 2023-03-15 19:54:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pragia
## 2023-03-15 19:54:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Phaeodactylibacter
## 2023-03-15 19:54:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sedimentitalea
## 2023-03-15 19:54:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Acidocella
## 2023-03-15 19:54:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.o__Bacteroidetes_Order_II._Incertae_sedis.f__Rhodothermaceae.g__Salinibacter
## 2023-03-15 19:54:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Rhodospirillum
## 2023-03-15 19:54:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Thermosynechococcus
## 2023-03-15 19:54:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Spirochaetaceae.g__Salinispira
## 2023-03-15 19:54:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Bifidobacteriales.f__Bifidobacteriaceae.g__Parascardovia
## 2023-03-15 19:54:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Carnobacteriaceae.g__Alloiococcus
## 2023-03-15 19:54:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Joostella
## 2023-03-15 19:54:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Paenibacillus
## 2023-03-15 19:54:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ketogulonicigenium
## 2023-03-15 19:54:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Kandleria
## 2023-03-15 19:54:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Celeribacter
## 2023-03-15 19:54:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.g__Kallipyga
## 2023-03-15 19:54:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prevotellaceae.g__Prevotella
## 2023-03-15 19:54:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Coprococcus
## 2023-03-15 19:54:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Caulobacterales.f__Caulobacteraceae.g__Woodsholea
## 2023-03-15 19:54:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylococcus
## 2023-03-15 19:54:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Beggiatoa
## 2023-03-15 19:54:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Eggerthia
## 2023-03-15 19:54:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.g__Candidatus_Babela
## 2023-03-15 19:54:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Tistrella
## 2023-03-15 19:54:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Mucispirillum
## 2023-03-15 19:54:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylobacteriaceae.g__Microvirga
## 2023-03-15 19:54:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Caliciviridae.g__Vesivirus
## 2023-03-15 19:54:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Wenxinia
## 2023-03-15 19:54:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylovulum
## 2023-03-15 19:54:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Marvinbryantia
## 2023-03-15 19:54:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiorhodococcus
## 2023-03-15 19:54:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Anaerostipes
## 2023-03-15 19:54:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Aequorivita
## 2023-03-15 19:54:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Granulibacter
## 2023-03-15 19:54:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Virgibacillus
## 2023-03-15 19:54:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Kushneria
## 2023-03-15 19:54:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Christensenellaceae.g__Christensenella
## 2023-03-15 19:54:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Alcanivoracaceae.g__Alcanivorax
## 2023-03-15 19:54:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Halobacteroides
## 2023-03-15 19:54:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Maribacter
## 2023-03-15 19:54:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Methylocapsa
## 2023-03-15 19:54:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Bunyaviridae.g__Orthobunyavirus
## 2023-03-15 19:55:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Gemmata
## 2023-03-15 19:55:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Thermomonosporaceae.g__Thermomonospora
## 2023-03-15 19:55:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Palaeococcus
## 2023-03-15 19:55:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Sporomusaceae.g__Pelosinus
## 2023-03-15 19:55:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Gluconacetobacter
## 2023-03-15 19:55:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Kineosporiales.f__Kineosporiaceae.g__Angustibacter
## 2023-03-15 19:55:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Anaerolinea
## 2023-03-15 19:55:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Candidatus_Accumulibacter
## 2023-03-15 19:55:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Oxalobacteraceae.g__Pseudoduganella
## 2023-03-15 19:55:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Hepeviridae.g__Piscihepevirus
## 2023-03-15 19:55:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Ignavibacteriae.c__Ignavibacteria.o__Ignavibacteriales.f__Ignavibacteriaceae.g__Ignavibacterium
## 2023-03-15 19:55:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitiniphilus
## 2023-03-15 19:55:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Acidobacteria.c__Solibacteres.o__Solibacterales.f__Solibacteraceae.g__Candidatus_Solibacter
## 2023-03-15 19:55:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Vitreoscilla
## 2023-03-15 19:55:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Elusimicrobia.c__Elusimicrobia.o__Elusimicrobiales.f__Elusimicrobiaceae.g__Elusimicrobium
## 2023-03-15 19:55:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Oceaniovalibus
## 2023-03-15 19:55:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylobacillus
## 2023-03-15 19:55:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Thiolapillus
## 2023-03-15 19:55:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Lunatimonas
## 2023-03-15 19:55:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Promicromonospora
## 2023-03-15 19:55:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Clostridium
## 2023-03-15 19:55:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Gemmobacter
## 2023-03-15 19:55:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natrinema
## 2023-03-15 19:55:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Castellaniella
## 2023-03-15 19:55:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Ishikawaella
## 2023-03-15 19:55:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Jejuia
## 2023-03-15 19:55:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Synergistes
## 2023-03-15 19:55:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Flexistipes
## 2023-03-15 19:55:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.f__Leptospiraceae.g__Leptonema
## 2023-03-15 19:55:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Dicistroviridae.g__Cripavirus
## 2023-03-15 19:55:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Fusobacteriaceae.g__Ilyobacter
## 2023-03-15 19:55:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Polydnaviridae.g__Ichnovirus
## 2023-03-15 19:55:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Formosa
## 2023-03-15 19:55:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Borreliaceae.g__Borrelia
## 2023-03-15 19:55:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Thermales.f__Thermaceae.g__Oceanithermus
## 2023-03-15 19:55:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.c__Spartobacteria.g__Terrimicrobium
## 2023-03-15 19:55:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Franconibacter
## 2023-03-15 19:55:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prevotellaceae.g__Hallella
## 2023-03-15 19:55:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Shimwellia
## 2023-03-15 19:55:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfocapsa
## 2023-03-15 19:55:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Yaniella
## 2023-03-15 19:55:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Nodosilinea
## 2023-03-15 19:55:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophaceae.g__Syntrophus
## 2023-03-15 19:55:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Mimiviridae.g__Cafeteriavirus
## 2023-03-15 19:55:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Propionispira
## 2023-03-15 19:55:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Andreprevotia
## 2023-03-15 19:55:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Candidatus_Stoquefichus
## 2023-03-15 19:55:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Simkaniaceae.g__Simkania
## 2023-03-15 19:55:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Sediminibacter
## 2023-03-15 19:55:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Starkeya
## 2023-03-15 19:55:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Lentibacillus
## 2023-03-15 19:55:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Spongiibacteraceae.g__Spongiibacter
## 2023-03-15 19:55:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Limnochordia.o__Limnochordales.f__Limnochordaceae.g__Limnochorda
## 2023-03-15 19:55:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Papillomaviridae.g__Omegapapillomavirus
## 2023-03-15 19:55:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Lewinella
## 2023-03-15 19:55:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Capnocytophaga
## 2023-03-15 19:55:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Circoviridae.g__Circovirus
## 2023-03-15 19:55:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudooceanicola
## 2023-03-15 19:55:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Sphingorhabdus
## 2023-03-15 19:55:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Thermomonosporaceae.g__Spirillospora
## 2023-03-15 19:55:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.g__Nitratifractor
## 2023-03-15 19:55:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Frateuria
## 2023-03-15 19:55:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Hydrogenophilales.f__Hydrogenophilaceae.g__Thiobacillus
## 2023-03-15 19:55:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Hydrogenovibrio
## 2023-03-15 19:55:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Chelativorans
## 2023-03-15 19:55:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Candidatus_Neoehrlichia
## 2023-03-15 19:55:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Propionicicella
## 2023-03-15 19:55:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Dethiosulfovibrio
## 2023-03-15 19:55:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Aliagarivorans
## 2023-03-15 19:55:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Nitrincola
## 2023-03-15 19:55:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Dongia
## 2023-03-15 19:55:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Arenaviridae.g__Arenavirus
## 2023-03-15 19:55:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudodonghicola
## 2023-03-15 19:55:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Prochlorales.f__Prochlorotrichaceae.g__Prochlorothrix
## 2023-03-15 19:55:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Allochromatium
## 2023-03-15 19:55:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Maritimibacter
## 2023-03-15 19:55:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Kribbella
## 2023-03-15 19:55:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Austwickia
## 2023-03-15 19:55:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_III._Incertae_Sedis.g__Thermosediminibacter
## 2023-03-15 19:55:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Microterricola
## 2023-03-15 19:55:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Alkaliphilus
## 2023-03-15 19:55:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Aeribacillus
## 2023-03-15 19:55:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Acidobacterium
## 2023-03-15 19:55:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Chitinimonas
## 2023-03-15 19:55:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Rhizobacter
## 2023-03-15 19:55:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Levilinea
## 2023-03-15 19:55:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Archaeoglobi.o__Archaeoglobales.f__Archaeoglobaceae.g__Geoglobus
## 2023-03-15 19:55:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Marinovum
## 2023-03-15 19:55:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Confluentimicrobium
## 2023-03-15 19:55:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Akkermansiaceae.g__Akkermansia
## 2023-03-15 19:55:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Fibrobacteres.c__Fibrobacteria.o__Fibrobacterales.f__Fibrobacteraceae.g__Fibrobacter
## 2023-03-15 19:55:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Pseudoalteromonadaceae.g__Pseudoalteromonas
## 2023-03-15 19:55:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfonatronovibrio
## 2023-03-15 19:55:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Aquamicrobium
## 2023-03-15 19:55:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Oscillospiraceae.g__Oscillibacter
## 2023-03-15 19:55:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bradyrhizobiaceae.g__Oligotropha
## 2023-03-15 19:55:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Leptolinea
## 2023-03-15 19:55:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Polyangiaceae.g__Sorangium
## 2023-03-15 19:55:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Histophilus
## 2023-03-15 19:55:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Geobacteraceae.g__Geopsychrobacter
## 2023-03-15 19:55:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Gallaecimonas
## 2023-03-15 19:55:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Tunalikevirus
## 2023-03-15 19:55:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Thaumarchaeota.g__Candidatus_Nitrosopelagicus
## 2023-03-15 19:55:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Terrabacter
## 2023-03-15 19:55:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Pelistega
## 2023-03-15 19:55:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Eudoraea
## 2023-03-15 19:55:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Poxviridae.g__Leporipoxvirus
## 2023-03-15 19:55:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Ewingella
## 2023-03-15 19:55:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Dinoroseobacter
## 2023-03-15 19:55:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Cucumibacter
## 2023-03-15 19:55:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Steroidobacter
## 2023-03-15 19:55:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Riemerella
## 2023-03-15 19:55:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Oxalobacteraceae.g__Oxalobacter
## 2023-03-15 19:55:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Anaerofustis
## 2023-03-15 19:55:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfohalobium
## 2023-03-15 19:55:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Chitinophaga
## 2023-03-15 19:55:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Paramesorhizobium
## 2023-03-15 19:55:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Amoebophilaceae.g__Candidatus_Amoebophilus
## 2023-03-15 19:55:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Halorhodospira
## 2023-03-15 19:55:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Fibrobacteres.c__Chitinispirillia.o__Chitinispirillales.f__Chitinispirillaceae.g__Chitinispirillum
## 2023-03-15 19:55:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Adhaeribacter
## 2023-03-15 19:55:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Halonatronum
## 2023-03-15 19:55:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Kordiimonadales.f__Kordiimonadaceae.g__Kordiimonas
## 2023-03-15 19:55:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Glycomycetales.f__Glycomycetaceae.g__Haloglycomyces
## 2023-03-15 19:55:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Carboxydothermus
## 2023-03-15 19:55:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Anaerophaga
## 2023-03-15 19:55:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Tatumella
## 2023-03-15 19:55:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Hahellaceae.g__Hahella
## 2023-03-15 19:55:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Blastomonas
## 2023-03-15 19:55:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Rhodoluna
## 2023-03-15 19:55:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Thalassobaculum
## 2023-03-15 19:55:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Dokdonella
## 2023-03-15 19:55:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Nitrosococcus
## 2023-03-15 19:55:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatiglans
## 2023-03-15 19:55:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Kocuria
## 2023-03-15 19:55:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Verrucosispora
## 2023-03-15 19:55:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfarculales.f__Desulfarculaceae.g__Desulfarculus
## 2023-03-15 19:55:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Rubritepida
## 2023-03-15 19:55:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Melissococcus
## 2023-03-15 19:55:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Isosphaeraceae.g__Singulisphaera
## 2023-03-15 19:55:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinopolysporales.f__Actinopolysporaceae.g__Actinopolyspora
## 2023-03-15 19:55:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sagittula
## 2023-03-15 19:55:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Peptostreptococcus
## 2023-03-15 19:55:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Pelagibacterium
## 2023-03-15 19:55:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Anaerobacillus
## 2023-03-15 19:55:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Leucothrix
## 2023-03-15 19:55:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Lentisphaerae.c__Lentisphaeria.o__Lentisphaerales.f__Lentisphaeraceae.g__Lentisphaera
## 2023-03-15 19:55:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zunongwangia
## 2023-03-15 19:55:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Rouxiella
## 2023-03-15 19:55:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Ornithobacterium
## 2023-03-15 19:55:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Galbibacter
## 2023-03-15 19:55:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Octadecabacter
## 2023-03-15 19:55:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Simplexvirus
## 2023-03-15 19:55:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thalassobacter
## 2023-03-15 19:55:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Micrococcus
## 2023-03-15 19:55:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Fabavirus
## 2023-03-15 19:55:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Enterorhabdus
## 2023-03-15 19:55:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Planctopirus
## 2023-03-15 19:55:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Salegentibacter
## 2023-03-15 19:55:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Alphacoronavirus
## 2023-03-15 19:55:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Propionibacteriaceae.g__Propionimicrobium
## 2023-03-15 19:55:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Tetrasphaera
## 2023-03-15 19:55:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Zymomonas
## 2023-03-15 19:55:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomonas
## 2023-03-15 19:55:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Derxia
## 2023-03-15 19:55:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Lyngbya
## 2023-03-15 19:55:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Parvimonas
## 2023-03-15 19:55:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Aminomonas
## 2023-03-15 19:55:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Saccharibacter
## 2023-03-15 19:55:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Crocinitomicaceae.g__Fluviicola
## 2023-03-15 19:55:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Sediminicola
## 2023-03-15 19:55:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bradyrhizobiaceae.g__Tardiphaga
## 2023-03-15 19:55:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanobacteriaceae.g__Methanosphaera
## 2023-03-15 19:55:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sulfitobacter
## 2023-03-15 19:55:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Betacoronavirus
## 2023-03-15 19:55:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Deinococcales.f__Trueperaceae.g__Truepera
## 2023-03-15 19:55:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Desulfuromonadaceae.g__Desulfuromonas
## 2023-03-15 19:55:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Teredinibacter
## 2023-03-15 19:55:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.g__Timonella
## 2023-03-15 19:55:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Pseudohongiella
## 2023-03-15 19:55:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatitalea
## 2023-03-15 19:55:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiocapsa
## 2023-03-15 19:55:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Dermatophilus
## 2023-03-15 19:55:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Listeriaceae.g__Listeria
## 2023-03-15 19:55:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Oceanospirillum
## 2023-03-15 19:55:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Variovorax
## 2023-03-15 19:55:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Geofilum
## 2023-03-15 19:55:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Halieaceae.g__Luminiphilus
## 2023-03-15 19:55:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Haemophilus
## 2023-03-15 19:55:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Tachikawaea
## 2023-03-15 19:55:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Kineosporiales.f__Kineosporiaceae.g__Kineosporia
## 2023-03-15 19:55:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Pseudolabrys
## 2023-03-15 19:55:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Sanguibacteroides
## 2023-03-15 19:55:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Niabella
## 2023-03-15 19:55:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Echinicola
## 2023-03-15 19:55:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Micavibrio
## 2023-03-15 19:55:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Parvibaculum
## 2023-03-15 19:55:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Marseilleviridae.g__Marseillevirus
## 2023-03-15 19:55:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oleiphilaceae.g__Oleiphilus
## 2023-03-15 19:55:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Nesiotobacter
## 2023-03-15 19:55:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Glycomycetales.f__Glycomycetaceae.g__Glycomyces
## 2023-03-15 19:55:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Magnetococcales.f__Magnetococcaceae.g__Magnetococcus
## 2023-03-15 19:55:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobiaceae.g__Haloferula
## 2023-03-15 19:55:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Sulfuritalea
## 2023-03-15 19:55:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Kineosporiales.f__Kineosporiaceae.g__Kineococcus
## 2023-03-15 19:55:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Microthrixaceae.g__Candidatus_Microthrix
## 2023-03-15 19:55:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Phycodnaviridae.g__Prymnesiovirus
## 2023-03-15 19:55:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Olleya
## 2023-03-15 19:55:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Sulfuricellales.f__Sulfuricellaceae.g__Sulfuricella
## 2023-03-15 19:55:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Spounalikevirus
## 2023-03-15 19:55:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Vitellibacter
## 2023-03-15 19:55:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Vibrio
## 2023-03-15 19:55:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Cyanothece
## 2023-03-15 19:55:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Terracoccus
## 2023-03-15 19:55:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Diaphorobacter
## 2023-03-15 19:55:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Isoptericola
## 2023-03-15 19:55:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Granulicella
## 2023-03-15 19:55:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Flexithrix
## 2023-03-15 19:55:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Flaviflexus
## 2023-03-15 19:55:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Oceanibulbus
## 2023-03-15 19:55:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Yonghaparkia
## 2023-03-15 19:55:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Crenobacter
## 2023-03-15 19:55:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Leptotrichiaceae.g__Streptobacillus
## 2023-03-15 19:55:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Aeromonas
## 2023-03-15 19:55:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Colwellia
## 2023-03-15 19:55:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Thermoplasmatales.f__Picrophilaceae.g__Picrophilus
## 2023-03-15 19:55:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.g__Phocaeicola
## 2023-03-15 19:55:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Salinimicrobium
## 2023-03-15 19:55:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Paenirhodobacter
## 2023-03-15 19:55:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Rubinisphaera
## 2023-03-15 19:55:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Microbulbiferaceae.g__Microbulbifer
## 2023-03-15 19:55:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfarculales.f__Desulfarculaceae.g__Dethiosulfatarculus
## 2023-03-15 19:55:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.g__Caedibacter
## 2023-03-15 19:55:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Rudaea
## 2023-03-15 19:55:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Lactobacillaceae.g__Sharpea
## 2023-03-15 19:55:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ahrensia
## 2023-03-15 19:55:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseivivax
## 2023-03-15 19:55:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Anaplasma
## 2023-03-15 19:55:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulforegula
## 2023-03-15 19:55:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Halothiobacillaceae.g__Halothiobacillus
## 2023-03-15 19:55:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Filomicrobium
## 2023-03-15 19:55:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Waddliaceae.g__Waddlia
## 2023-03-15 19:55:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Xanthobacter
## 2023-03-15 19:55:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.g__Thermorudis
## 2023-03-15 19:55:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Alkaliflexus
## 2023-03-15 19:55:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Longispora
## 2023-03-15 19:55:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Hahellaceae.g__Zooshikella
## 2023-03-15 19:55:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Virgaviridae.g__Pomovirus
## 2023-03-15 19:55:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sediminimonas
## 2023-03-15 19:55:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Methyloferula
## 2023-03-15 19:55:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Cyanobium
## 2023-03-15 19:55:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Rikenellaceae.g__Mucinivorans
## 2023-03-15 19:55:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Desulfurococcaceae.g__Ignicoccus
## 2023-03-15 19:55:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Agreia
## 2023-03-15 19:55:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cardiobacteriales.f__Cardiobacteriaceae.g__Cardiobacterium
## 2023-03-15 19:55:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Litoreibacter
## 2023-03-15 19:55:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Nonlabens
## 2023-03-15 19:55:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.g__Acidibacillus
## 2023-03-15 19:55:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_III._Incertae_Sedis.g__Caldicellulosiruptor
## 2023-03-15 19:55:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Lacinutrix
## 2023-03-15 19:55:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitinilyticum
## 2023-03-15 19:55:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Shimia
## 2023-03-15 19:55:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Puniceicoccales.f__Puniceicoccaceae.g__Coraliomargarita
## 2023-03-15 19:55:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Stappia
## 2023-03-15 19:55:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Catabacteriaceae.g__Catabacter
## 2023-03-15 19:55:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Arenimonas
## 2023-03-15 19:55:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Johnsonella
## 2023-03-15 19:55:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Xylella
## 2023-03-15 19:55:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Hafnia
## 2023-03-15 19:55:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Ferrimicrobium
## 2023-03-15 19:55:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Actinocatenispora
## 2023-03-15 19:55:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Proteus
## 2023-03-15 19:55:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Croceitalea
## 2023-03-15 19:55:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Luteibacter
## 2023-03-15 19:55:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.c__Spartobacteria.o__Chthoniobacterales.f__Chthoniobacteraceae.g__Chthoniobacter
## 2023-03-15 19:55:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Chania
## 2023-03-15 19:55:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Kluyvera
## 2023-03-15 19:55:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfovibrionaceae.g__Lawsonia
## 2023-03-15 19:55:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Cytophaga
## 2023-03-15 19:55:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bartonellaceae.g__Bartonella
## 2023-03-15 19:55:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Mycobacteriaceae.g__Mycobacterium
## 2023-03-15 19:55:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Polycyclovorans
## 2023-03-15 19:55:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Oleiagrimonas
## 2023-03-15 19:55:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Adenoviridae.g__Aviadenovirus
## 2023-03-15 19:55:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Leptotrichiaceae.g__Sebaldella
## 2023-03-15 19:55:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Mucilaginibacter
## 2023-03-15 19:55:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Yersinia
## 2023-03-15 19:55:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Bdellovibrionales.f__Bacteriovoracaceae.g__Bacteriovorax
## 2023-03-15 19:55:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Lutibaculum
## 2023-03-15 19:55:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Gulosibacter
## 2023-03-15 19:55:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sneathiellales.f__Sneathiellaceae.g__Sneathiella
## 2023-03-15 19:55:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Comamonas
## 2023-03-15 19:55:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Paraburkholderia
## 2023-03-15 19:55:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.g__Candidatus_Azobacteroides
## 2023-03-15 19:55:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Commensalibacter
## 2023-03-15 19:55:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halapricum
## 2023-03-15 19:55:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Flavisolibacter
## 2023-03-15 19:55:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Phaeospirillum
## 2023-03-15 19:55:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Flavihumibacter
## 2023-03-15 19:55:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Tanticharoenia
## 2023-03-15 19:55:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Oceanibaculum
## 2023-03-15 19:55:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Enorma
## 2023-03-15 19:55:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Microscilla
## 2023-03-15 19:55:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Adenoviridae.g__Mastadenovirus
## 2023-03-15 19:55:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Aminobacterium
## 2023-03-15 19:55:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Desulfurispora
## 2023-03-15 19:55:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfovermiculus
## 2023-03-15 19:55:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Caulobacterales.f__Caulobacteraceae.g__Phenylobacterium
## 2023-03-15 19:55:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Emticicia
## 2023-03-15 19:55:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Ideonella
## 2023-03-15 19:55:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Desulfurobacteriales.f__Desulfurobacteriaceae.g__Desulfurobacterium
## 2023-03-15 19:55:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Thermococcus
## 2023-03-15 19:55:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Enteractinococcus
## 2023-03-15 19:55:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Schlesneria
## 2023-03-15 19:55:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Kibdelosporangium
## 2023-03-15 19:55:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Dehalococcoidia.g__Dehalogenimonas
## 2023-03-15 19:55:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Orbales.f__Orbaceae.g__Frischella
## 2023-03-15 19:55:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Thermomonas
## 2023-03-15 19:55:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Catenuloplanes
## 2023-03-15 19:55:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Flammeovirga
## 2023-03-15 19:55:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Wenzhouxiangellaceae.g__Wenzhouxiangella
## 2023-03-15 19:55:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Mitsuaria
## 2023-03-15 19:55:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Marinobacter
## 2023-03-15 19:55:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Gemmatimonadetes.c__Gemmatimonadetes.o__Gemmatimonadales.f__Gemmatimonadaceae.g__Gemmatirosa
## 2023-03-15 19:55:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Delftia
## 2023-03-15 19:55:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Muricauda
## 2023-03-15 19:55:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Kozakia
## 2023-03-15 19:55:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Roseivirga
## 2023-03-15 19:55:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermabacteraceae.g__Dermabacter
## 2023-03-15 19:55:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Pseudarthrobacter
## 2023-03-15 19:55:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Allokutzneria
## 2023-03-15 19:55:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Elusimicrobia.c__Endomicrobia.o__Endomicrobiales.f__Endomicrobiaceae.g__Endomicrobium
## 2023-03-15 19:55:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Silvibacterium
## 2023-03-15 19:55:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Sporolactobacillaceae.g__Tuberibacillus
## 2023-03-15 19:55:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinomycetospora
## 2023-03-15 19:55:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Ferriphaselus
## 2023-03-15 19:55:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Citromicrobium
## 2023-03-15 19:55:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Planomonospora
## 2023-03-15 19:55:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Roseburia
## 2023-03-15 19:55:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Candidatus_Desulforudis
## 2023-03-15 19:55:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Escherichia
## 2023-03-15 19:55:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Planktomarina
## 2023-03-15 19:55:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Novispirillum
## 2023-03-15 19:55:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Caenimonas
## 2023-03-15 19:55:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cardiobacteriales.f__Cardiobacteriaceae.g__Dichelobacter
## 2023-03-15 19:55:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhizobiaceae.g__Neorhizobium
## 2023-03-15 19:55:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Asanoa
## 2023-03-15 19:55:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Limnobacter
## 2023-03-15 19:55:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Thermales.f__Thermaceae.g__Marinithermus
## 2023-03-15 19:55:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Succinivibrionaceae.g__Succinivibrio
## 2023-03-15 19:55:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Glaciecola
## 2023-03-15 19:55:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Weeksella
## 2023-03-15 19:55:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylobacteriaceae.g__Meganema
## 2023-03-15 19:55:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Neptunomonas
## 2023-03-15 19:55:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Veillonellales.f__Veillonellaceae.g__Megasphaera
## 2023-03-15 19:55:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Mitsuokella
## 2023-03-15 19:55:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Asaia
## 2023-03-15 19:55:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Viridibacillus
## 2023-03-15 19:55:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Methylocella
## 2023-03-15 19:55:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Stigonematales.g__Hapalosiphon
## 2023-03-15 19:55:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Spirosoma
## 2023-03-15 19:55:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Parabacteroides
## 2023-03-15 19:55:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Leptothrix
## 2023-03-15 19:55:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Phycodnaviridae.g__Prasinovirus
## 2023-03-15 19:55:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Eggerthella
## 2023-03-15 19:55:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Anaerovibrio
## 2023-03-15 19:55:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Xylanimonas
## 2023-03-15 19:55:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.o__Methylacidiphilales.f__Methylacidiphilaceae.g__Methylacidiphilum
## 2023-03-15 19:55:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Thermanaerovibrio
## 2023-03-15 19:55:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Cylindrospermum
## 2023-03-15 19:55:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Hirschia
## 2023-03-15 19:55:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Ktedonobacteria.o__Ktedonobacterales.f__Ktedonobacteraceae.g__Ktedonobacter
## 2023-03-15 19:55:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Haliscomenobacter
## 2023-03-15 19:55:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Ornatilinea
## 2023-03-15 19:55:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Rhodoplanes
## 2023-03-15 19:55:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Kiloniellales.f__Kiloniellaceae.g__Kiloniella
## 2023-03-15 19:55:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Gimesia
## 2023-03-15 19:55:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Arcticibacter
## 2023-03-15 19:55:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ruegeria
## 2023-03-15 19:55:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Psychroflexus
## 2023-03-15 19:55:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Haematospirillum
## 2023-03-15 19:55:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Varicellovirus
## 2023-03-15 19:55:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Pyrodictiaceae.g__Pyrolobus
## 2023-03-15 19:55:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Dictyoglomi.c__Dictyoglomia.o__Dictyoglomales.f__Dictyoglomaceae.g__Dictyoglomus
## 2023-03-15 19:55:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Orthomyxoviridae.g__Isavirus
## 2023-03-15 19:55:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Levyella
## 2023-03-15 19:55:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Desulfuromonadaceae.g__Pelobacter
## 2023-03-15 19:55:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiohalocapsa
## 2023-03-15 19:55:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Pirellula
## 2023-03-15 19:55:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Cesiribacter
## 2023-03-15 19:55:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Saccharibacillus
## 2023-03-15 19:55:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Catelliglobosispora
## 2023-03-15 19:55:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Retroviridae.g__Betaretrovirus
## 2023-03-15 19:55:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Nakamurellales.f__Nakamurellaceae.g__Nakamurella
## 2023-03-15 19:55:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Hytrosaviridae.g__Glossinavirus
## 2023-03-15 19:55:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Papillomaviridae.g__Lambdapapillomavirus
## 2023-03-15 19:55:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Fulvivirga
## 2023-03-15 19:55:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Leuconostocaceae.g__Leuconostoc
## 2023-03-15 19:55:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Hydrogenibacillus
## 2023-03-15 19:55:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Acetohalobium
## 2023-03-15 19:55:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Salinarchaeum
## 2023-03-15 19:55:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Acidithrix
## 2023-03-15 19:55:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Frankiales.f__Sporichthyaceae.g__Sporichthya
## 2023-03-15 19:55:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Microtetraspora
## 2023-03-15 19:55:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Pilimelia
## 2023-03-15 19:55:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Rubrobacteria.o__Rubrobacterales.f__Rubrobacteraceae.g__Rubrobacter
## 2023-03-15 19:55:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Campylobacteraceae.g__Campylobacter
## 2023-03-15 19:55:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Waikavirus
## 2023-03-15 19:55:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhizobiaceae.g__Agrobacterium
## 2023-03-15 19:55:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Hydrogenivirga
## 2023-03-15 19:55:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Rhodopirellula
## 2023-03-15 19:55:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_III._Incertae_Sedis.g__Thermoanaerobacterium
## 2023-03-15 19:55:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Sporomusaceae.g__Sporomusa
## 2023-03-15 19:55:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Holosporaceae.g__Holospora
## 2023-03-15 19:55:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Candidatus_Korarchaeota.g__Candidatus_Korarchaeum
## 2023-03-15 19:55:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Acidovorax
## 2023-03-15 19:55:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Poxviridae.g__Molluscipoxvirus
## 2023-03-15 19:55:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Symbiobacteriaceae.g__Symbiobacterium
## 2023-03-15 19:55:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Candidatus_Arthromitus
## 2023-03-15 19:55:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Candidatus_Soleaferrea
## 2023-03-15 19:55:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.g__Tropheryma
## 2023-03-15 19:55:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Hamadaea
## 2023-03-15 19:55:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Mycoplasmatales.f__Mycoplasmataceae.g__Ureaplasma
## 2023-03-15 19:55:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Orbales.f__Orbaceae.g__Candidatus_Schmidhempelia
## 2023-03-15 19:55:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Schleiferiaceae.g__Schleiferia
## 2023-03-15 19:55:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Robinsoniella
## 2023-03-15 19:55:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Polynucleobacter
## 2023-03-15 19:55:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Loktanella
## 2023-03-15 19:55:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Thermoactinomycetaceae.g__Thermoactinomyces
## 2023-03-15 19:55:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Azohydromonas
## 2023-03-15 19:55:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Flaviviridae.g__Flavivirus
## 2023-03-15 19:55:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Sciscionella
## 2023-03-15 19:55:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Polyangiaceae.g__Chondromyces
## 2023-03-15 19:55:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Segetibacter
## 2023-03-15 19:55:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Herbidospora
## 2023-03-15 19:55:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pantoea
## 2023-03-15 19:55:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Syntrophobotulus
## 2023-03-15 19:55:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Defluviimonas
## 2023-03-15 19:55:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Maribius
## 2023-03-15 19:55:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Magnetospira
## 2023-03-15 19:55:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Pseudoflavonifractor
## 2023-03-15 19:55:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Gulbenkiania
## 2023-03-15 19:55:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Skermanella
## 2023-03-15 19:55:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylobacter
## 2023-03-15 19:55:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Enterobacter
## 2023-03-15 19:55:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Terrimonas
## 2023-03-15 19:55:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Vulgatibacteraceae.g__Vulgatibacter
## 2023-03-15 19:55:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Rhodobacter
## 2023-03-15 19:55:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Advenella
## 2023-03-15 19:55:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Dicistroviridae.g__Aparavirus
## 2023-03-15 19:55:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Dactylosporangium
## 2023-03-15 19:55:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.o__Sphaerobacterales.f__Sphaerobacteraceae.g__Sphaerobacter
## 2023-03-15 19:55:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Spiribacter
## 2023-03-15 19:55:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thioclava
## 2023-03-15 19:55:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Muribacter
## 2023-03-15 19:55:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfonatronaceae.g__Desulfonatronum
## 2023-03-15 19:55:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Sediminibacterium
## 2023-03-15 19:55:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Anaeromyxobacteraceae.g__Anaeromyxobacter
## 2023-03-15 19:55:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Brachyspirales.f__Brachyspiraceae.g__Brachyspira
## 2023-03-15 19:55:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Faecalicoccus
## 2023-03-15 19:55:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Nonomuraea
## 2023-03-15 19:55:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Serinicoccus
## 2023-03-15 19:55:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Marivirga
## 2023-03-15 19:55:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Proteiniclasticum
## 2023-03-15 19:55:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Catenulisporales.f__Actinospicaceae.g__Actinospica
## 2023-03-15 19:55:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zobellia
## 2023-03-15 19:55:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Kurthia
## 2023-03-15 19:55:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pluralibacter
## 2023-03-15 19:55:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Syntrophomonadaceae.g__Syntrophomonas
## 2023-03-15 19:55:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Polyomaviridae.g__Polyomavirus
## 2023-03-15 19:55:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobia_subdivision_3.g__Pedosphaera
## 2023-03-15 19:55:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Pseudacidovorax
## 2023-03-15 19:55:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfobacter
## 2023-03-15 19:55:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Gracilibacillus
## 2023-03-15 19:55:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Algoriphagus
## 2023-03-15 19:55:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Thiorhodospira
## 2023-03-15 19:55:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Rothia
## 2023-03-15 19:55:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zhouia
## 2023-03-15 19:55:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Microbispora
## 2023-03-15 19:55:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Hepatovirus
## 2023-03-15 19:55:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Pseudomonadaceae.g__Oblitimonas
## 2023-03-15 19:55:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Fictibacillus
## 2023-03-15 19:55:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Paludibacterium
## 2023-03-15 19:55:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Falsirhodobacter
## 2023-03-15 19:55:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Gordonibacter
## 2023-03-15 19:55:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Halocynthiibacter
## 2023-03-15 19:55:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Caldicoprobacteraceae.g__Caldicoprobacter
## 2023-03-15 19:55:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Candidatus_Puniceispirillum
## 2023-03-15 19:55:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Erysipelatoclostridium
## 2023-03-15 19:55:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Rhodomicrobium
## 2023-03-15 19:55:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Odoribacteraceae.g__Odoribacter
## 2023-03-15 19:55:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methermicoccaceae.g__Methermicoccus
## 2023-03-15 19:55:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Nitrospirae.c__Nitrospira.o__Nitrospirales.f__Nitrospiraceae.g__Candidatus_Magnetobacterium
## 2023-03-15 19:55:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinokineospora
## 2023-03-15 19:55:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Listeriaceae.g__Brochothrix
## 2023-03-15 19:55:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Cecembia
## 2023-03-15 19:55:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Flavobacterium
## 2023-03-15 19:55:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Planctomyces
## 2023-03-15 19:55:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Senecavirus
## 2023-03-15 19:55:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halorhabdus
## 2023-03-15 19:55:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Xenococcus
## 2023-03-15 19:55:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Amoebophilaceae.g__Candidatus_Cardinium
## 2023-03-15 19:55:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Providencia
## 2023-03-15 19:55:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Amorphus
## 2023-03-15 19:55:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Coprobacillus
## 2023-03-15 19:55:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Astroviridae.g__Mamastrovirus
## 2023-03-15 19:55:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Oribacterium
## 2023-03-15 19:55:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Candidatus_Profftella
## 2023-03-15 19:55:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Orenia
## 2023-03-15 19:55:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thalassobius
## 2023-03-15 19:55:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Planktothrix
## 2023-03-15 19:55:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Tepidicaulis
## 2023-03-15 19:55:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Hoeflea
## 2023-03-15 19:55:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Oceanimonas
## 2023-03-15 19:55:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Porticoccaceae.g__Porticoccus
## 2023-03-15 19:55:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiales_Family_XIII._Incertae_Sedis.g__Anaerovorax
## 2023-03-15 19:55:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Mangrovimonas
## 2023-03-15 19:55:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Hylemonella
## 2023-03-15 19:55:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Staphylococcaceae.g__Macrococcus
## 2023-03-15 19:55:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Ehrlichia
## 2023-03-15 19:55:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Paracaedibacteraceae.g__Candidatus_Paracaedibacter
## 2023-03-15 19:55:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Kosakonia
## 2023-03-15 19:55:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Geodermatophilales.f__Geodermatophilaceae.g__Geodermatophilus
## 2023-03-15 19:55:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Senegalimassilia
## 2023-03-15 19:55:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Gordoniaceae.g__Gordonia
## 2023-03-15 19:55:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thioflavicoccus
## 2023-03-15 19:55:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Helicobacter
## 2023-03-15 19:55:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Vagococcus
## 2023-03-15 19:55:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Acetivibrio
## 2023-03-15 19:56:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Pseudobacteroides
## 2023-03-15 19:56:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Tenacibaculum
## 2023-03-15 19:56:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Herpesvirales.f__Alloherpesviridae.g__Batrachovirus
## 2023-03-15 19:56:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methanosarcinaceae.g__Methanosarcina
## 2023-03-15 19:56:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Apibacter
## 2023-03-15 19:56:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Cycloclasticus
## 2023-03-15 19:56:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Coleofasciculus
## 2023-03-15 19:56:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.g__Reyranella
## 2023-03-15 19:56:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Fervidobacteriaceae.g__Thermosipho
## 2023-03-15 19:56:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Polaromonas
## 2023-03-15 19:56:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Sporomusaceae.g__Anaeromusa
## 2023-03-15 19:56:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Acidobacteria.c__Blastocatellia.g__Chloracidobacterium
## 2023-03-15 19:56:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Henriciella
## 2023-03-15 19:56:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Aquamavirus
## 2023-03-15 19:56:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Tamlana
## 2023-03-15 19:56:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Eubacterium
## 2023-03-15 19:56:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermacoccaceae.g__Luteipulveratus
## 2023-03-15 19:56:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Persicobacteraceae.g__Persicobacter
## 2023-03-15 19:56:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natrialba
## 2023-03-15 19:56:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Amantichitinum
## 2023-03-15 19:56:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Criblamydiaceae.g__Criblamydia
## 2023-03-15 19:56:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Devosia
## 2023-03-15 19:56:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Salinisphaerales.f__Salinisphaeraceae.g__Salinisphaera
## 2023-03-15 19:56:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Solibacillus
## 2023-03-15 19:56:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Fibrella
## 2023-03-15 19:56:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Kinetoplastibacterium
## 2023-03-15 19:56:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Bacillus
## 2023-03-15 19:56:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Mycoplasmatales.f__Mycoplasmataceae.g__Mycoplasma
## 2023-03-15 19:56:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Midichloriaceae.g__Candidatus_Midichloria
## 2023-03-15 19:56:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Candidatus_Cloacimonetes.g__Candidatus_Cloacimonas
## 2023-03-15 19:56:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Phycodnaviridae.g__Chlorovirus
## 2023-03-15 19:56:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Aurantimonadaceae.g__Aurantimonas
## 2023-03-15 19:56:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Slackia
## 2023-03-15 19:56:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfobacterium
## 2023-03-15 19:56:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Cellulosilyticum
## 2023-03-15 19:56:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Lampropedia
## 2023-03-15 19:56:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Propionibacteriaceae.g__Granulicoccus
## 2023-03-15 19:56:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Chelatococcus
## 2023-03-15 19:56:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Nostoc
## 2023-03-15 19:56:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Alicycliphilus
## 2023-03-15 19:56:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanobacteriaceae.g__Methanobrevibacter
## 2023-03-15 19:56:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Xanthomonas
## 2023-03-15 19:56:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Caldanaerobacter
## 2023-03-15 19:56:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Polaribacter
## 2023-03-15 19:56:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Flaviviridae.g__Pestivirus
## 2023-03-15 19:56:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Petrotogales.g__Defluviitoga
## 2023-03-15 19:56:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiorhodovibrio
## 2023-03-15 19:56:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Candidatus_Evansia
## 2023-03-15 19:56:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Hydrogenobaculum
## 2023-03-15 19:56:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Prauserella
## 2023-03-15 19:56:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Candidatus_Aquiluna
## 2023-03-15 19:56:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Actinobaculum
## 2023-03-15 19:56:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Lentimicrobiaceae.g__Lentimicrobium
## 2023-03-15 19:56:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Ornithinibacillus
## 2023-03-15 19:56:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Zetaproteobacteria.o__Mariprofundales.f__Mariprofundaceae.g__Mariprofundus
## 2023-03-15 19:56:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Kineosphaera
## 2023-03-15 19:56:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Acidilobales.f__Caldisphaeraceae.g__Caldisphaera
## 2023-03-15 19:56:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Thermoanaerobacter
## 2023-03-15 19:56:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Pimelobacter
## 2023-03-15 19:56:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Thermobrachium
## 2023-03-15 19:56:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Propionibacteriaceae.g__Microlunatus
## 2023-03-15 19:56:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Eikenella
## 2023-03-15 19:56:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Epulopiscium
## 2023-03-15 19:56:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfomicrobiaceae.g__Desulfomicrobium
## 2023-03-15 19:56:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Geitlerinema
## 2023-03-15 19:56:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Bafinivirus
## 2023-03-15 19:56:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylocaldum
## 2023-03-15 19:56:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Carnimonas
## 2023-03-15 19:56:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Klebsiella
## 2023-03-15 19:56:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Belnapia
## 2023-03-15 19:56:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Opitutales.f__Opitutaceae.g__Opitutus
## 2023-03-15 19:56:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Aminobacter
## 2023-03-15 19:56:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Cobetia
## 2023-03-15 19:56:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Necropsobacter
## 2023-03-15 19:56:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.g__Candidatus_Hepatobacter
## 2023-03-15 19:56:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Varibaculum
## 2023-03-15 19:56:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Pleomorphomonas
## 2023-03-15 19:56:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Iridoviridae.g__Ranavirus
## 2023-03-15 19:56:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Tymovirales.f__Alphaflexiviridae.g__Potexvirus
## 2023-03-15 19:56:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Rubellimicrobium
## 2023-03-15 19:56:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Salivirus
## 2023-03-15 19:56:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Bacteroidaceae.g__Bacteroides
## 2023-03-15 19:56:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Ralstonia
## 2023-03-15 19:56:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Regiella
## 2023-03-15 19:56:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Rhodovibrio
## 2023-03-15 19:56:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.f__Leptospiraceae.g__Turneriella
## 2023-03-15 19:56:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylosarcina
## 2023-03-15 19:56:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Geminicoccus
## 2023-03-15 19:56:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Terracidiphilus
## 2023-03-15 19:56:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Acidaminococcales.f__Acidaminococcaceae.g__Succinispira
## 2023-03-15 19:56:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Paludibacter
## 2023-03-15 19:56:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.g__Anaerosporomusa
## 2023-03-15 19:56:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Raoultella
## 2023-03-15 19:56:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Paraglaciecola
## 2023-03-15 19:56:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Arsenicicoccus
## 2023-03-15 19:56:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Paeniclostridium
## 2023-03-15 19:56:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Ventosimonadaceae.g__Ventosimonas
## 2023-03-15 19:56:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Buttiauxella
## 2023-03-15 19:56:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Ilumatobacter
## 2023-03-15 19:56:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Paucibacter
## 2023-03-15 19:56:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Jonquetella
## 2023-03-15 19:56:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Agrococcus
## 2023-03-15 19:56:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Helcococcus
## 2023-03-15 19:56:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Xylophilus
## 2023-03-15 19:56:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.g__Exiguobacterium
## 2023-03-15 19:56:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.g__Candidatus_Sulcia
## 2023-03-15 19:56:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Alloactinosynnema
## 2023-03-15 19:56:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Anaerobaculum
## 2023-03-15 19:56:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Pasteurella
## 2023-03-15 19:56:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Thermonemataceae.g__Thermonema
## 2023-03-15 19:56:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Maricaulis
## 2023-03-15 19:56:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseovarius
## 2023-03-15 19:56:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Komagataeibacter
## 2023-03-15 19:56:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Phyllobacterium
## 2023-03-15 19:56:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Oxalobacteraceae.g__Herminiimonas
## 2023-03-15 19:56:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Hamiltonella
## 2023-03-15 19:56:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Mizugakiibacter
## 2023-03-15 19:56:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Nocardiaceae.g__Rhodococcus
## 2023-03-15 19:56:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanothermaceae.g__Methanothermus
## 2023-03-15 19:56:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Leclercia
## 2023-03-15 19:56:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Baculoviridae.g__Betabaculovirus
## 2023-03-15 19:56:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Poxviridae.g__Betaentomopoxvirus
## 2023-03-15 19:56:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Thiomicrospira
## 2023-03-15 19:56:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Acidaminococcales.f__Acidaminococcaceae.g__Acidaminococcus
## 2023-03-15 19:56:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Cryptobacterium
## 2023-03-15 19:56:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Aquincola
## 2023-03-15 19:56:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Kobuvirus
## 2023-03-15 19:56:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Sandaracinaceae.g__Sandaracinus
## 2023-03-15 19:56:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Thermosulfurimonas
## 2023-03-15 19:56:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobiaceae.g__Verrucomicrobium
## 2023-03-15 19:56:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Rubritaleaceae.g__Rubritalea
## 2023-03-15 19:56:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophaceae.g__Desulfobacca
## 2023-03-15 19:56:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Glaciibacter
## 2023-03-15 19:56:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Demequinaceae.g__Demequina
## 2023-03-15 19:56:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Leucobacter
## 2023-03-15 19:56:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Methylopila
## 2023-03-15 19:56:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Thermotogaceae.g__Thermotoga
## 2023-03-15 19:56:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Dehalococcoidia.o__Dehalococcoidales.f__Dehalococcoidaceae.g__Dehalococcoides
## 2023-03-15 19:56:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Sporocytophaga
## 2023-03-15 19:56:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Bdellovibrionales.f__Bdellovibrionaceae.g__Bdellovibrio
## 2023-03-15 19:56:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Methylosinus
## 2023-03-15 19:56:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Hypoviridae.g__Hypovirus
## 2023-03-15 19:56:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Pontibacter
## 2023-03-15 19:56:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Kamptonema
## 2023-03-15 19:56:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Thermobacillus
## 2023-03-15 19:56:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Thermocrispum
## 2023-03-15 19:56:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Pseudomonadaceae.g__Azotobacter
## 2023-03-15 19:56:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Oxalobacteraceae.g__Herbaspirillum
## 2023-03-15 19:56:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Hydrocarboniphaga
## 2023-03-15 19:56:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Faecalibaculum
## 2023-03-15 19:56:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Chlorobium
## 2023-03-15 19:56:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Rhodothermaeota.c__Balneolia.o__Balneolales.f__Balneolaceae.g__Gracilimonas
## 2023-03-15 19:56:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfovibrionaceae.g__Desulfocurvus
## 2023-03-15 19:56:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methanosarcinaceae.g__Methanomethylovorans
## 2023-03-15 19:56:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Lechevalieria
## 2023-03-15 19:56:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Veillonellales.f__Veillonellaceae.g__Dialister
## 2023-03-15 19:56:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Nitrospirae.c__Nitrospira.o__Nitrospirales.f__Nitrospiraceae.g__Leptospirillum
## 2023-03-15 19:56:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Labilitrichaceae.g__Labilithrix
## 2023-03-15 19:56:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Prosthecomicrobium
## 2023-03-15 19:56:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Methylibium
## 2023-03-15 19:56:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Petrotogales.g__Marinitoga
## 2023-03-15 19:56:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Aquitalea
## 2023-03-15 19:56:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Kosmotogales.f__Kosmotogaceae.g__Kosmotoga
## 2023-03-15 19:56:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.g__Fangia
## 2023-03-15 19:56:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.g__Tomitella
## 2023-03-15 19:56:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Oceanicaulis
## 2023-03-15 19:56:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Halalkalibacillus
## 2023-03-15 19:56:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Rhodoferax
## 2023-03-15 19:56:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Neorickettsia
## 2023-03-15 19:56:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Cylindrospermopsis
## 2023-03-15 19:56:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Tannerella
## 2023-03-15 19:56:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Runella
## 2023-03-15 19:56:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Spirochaetaceae.g__Sphaerochaeta
## 2023-03-15 19:56:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermacoccaceae.g__Demetria
## 2023-03-15 19:56:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Marinomonas
## 2023-03-15 19:56:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Chryseobacterium
## 2023-03-15 19:56:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Tyzzerella
## 2023-03-15 19:56:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Segniliparaceae.g__Segniliparus
## 2023-03-15 19:56:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Saccharomonospora
## 2023-03-15 19:56:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Nesterenkonia
## 2023-03-15 19:56:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Barnesiella
## 2023-03-15 19:56:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Fusobacteriaceae.g__Psychrilyobacter
## 2023-03-15 19:56:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Carnobacteriaceae.g__Allofustis
## 2023-03-15 19:56:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Blastochloris
## 2023-03-15 19:56:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfurellales.f__Desulfurellaceae.g__Desulfurella
## 2023-03-15 19:56:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Intestinibacter
## 2023-03-15 19:56:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Baculoviridae.g__Alphabaculovirus
## 2023-03-15 19:56:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Lachnoclostridium
## 2023-03-15 19:56:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Marinobacterium
## 2023-03-15 19:56:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Niveispirillum
## 2023-03-15 19:56:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.g__Elioraea
## 2023-03-15 19:56:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Stigonematales.g__Mastigocoleus
## 2023-03-15 19:56:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Lutibacter
## 2023-03-15 19:56:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Rickettsiaceae.g__Orientia
## 2023-03-15 19:56:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Tymovirales.f__Betaflexiviridae.g__Carlavirus
## 2023-03-15 19:56:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Jiangellales.f__Jiangellaceae.g__Jiangella
## 2023-03-15 19:56:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinifilaceae.g__Marinifilum
## 2023-03-15 19:56:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Microchaetaceae.g__Hassallia
## 2023-03-15 19:56:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prolixibacteraceae.g__Draconibacterium
## 2023-03-15 19:56:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Phycodnaviridae.g__Phaeovirus
## 2023-03-15 19:56:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Gillisia
## 2023-03-15 19:56:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Acidaminococcales.f__Acidaminococcaceae.g__Phascolarctobacterium
## 2023-03-15 19:56:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinoalloteichus
## 2023-03-15 19:56:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Phycicoccus
## 2023-03-15 19:56:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiales_Family_XIII._Incertae_Sedis.g__Casaltella
## 2023-03-15 19:56:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Lamprocystis
## 2023-03-15 19:56:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Dokdonia
## 2023-03-15 19:56:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Chlamydiaceae.g__Chlamydia
## 2023-03-15 19:56:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Partitiviridae.g__Betapartitivirus
## 2023-03-15 19:56:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Ramlibacter
## 2023-03-15 19:56:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Acetobacter
## 2023-03-15 19:56:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Methanomassiliicoccales.f__Methanomassiliicoccaceae.g__Methanomassiliicoccus
## 2023-03-15 19:56:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Caldilineae.o__Caldilineales.f__Caldilineaceae.g__Caldilinea
## 2023-03-15 19:56:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Caldalkalibacillus
## 2023-03-15 19:56:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Simonsiella
## 2023-03-15 19:56:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Calditerrivibrio
## 2023-03-15 19:56:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Rivulariaceae.g__Rivularia
## 2023-03-15 19:56:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Kordia
maaslin_without_group_PC <- function_Maaslin2(df_ACC_Voom_SNM, "PC_combined", "Temp/without_group_PC")
## [1] "Warning: Deleting existing log file: Temp/without_group_PC/maaslin2.log"
## 2023-03-15 19:56:25 INFO::Writing function arguments to log file
## 2023-03-15 19:56:25 INFO::Verifying options selected are valid
## 2023-03-15 19:56:25 INFO::Determining format of input files
## 2023-03-15 19:56:25 INFO::Input format is data samples as rows and metadata samples as rows
## 2023-03-15 19:56:25 INFO::Formula for random effects: expr ~ (1 | SEX) + (1 | Ethnicity_Race) + (1 | AGE) + (1 | Neoplasm_Status) + (1 | Clinical_Status_3_Mo_Post.Op) + (1 | Surgical_margin) + (1 | ATYPICAL_MITOTIC_FIGURES)
## 2023-03-15 19:56:25 INFO::Formula for fixed effects: expr ~  PC_combined
## 2023-03-15 19:56:25 INFO::Filter data based on min abundance and min prevalence
## 2023-03-15 19:56:25 INFO::Total samples in data: 77
## 2023-03-15 19:56:25 INFO::Min samples required with min abundance for a feature not to be filtered: 0.000000
## 2023-03-15 19:56:25 INFO::Total filtered features: 80
## 2023-03-15 19:56:25 INFO::Filtered feature names from abundance and prevalence filtering: k__Viruses.f__Baculoviridae.g__Deltabaculovirus, k__Viruses.o__Caudovirales.f__Myoviridae.g__I3likevirus, k__Viruses.f__Anelloviridae.g__Gammatorquevirus, k__Viruses.f__Phycodnaviridae.g__Coccolithovirus, k__Viruses.f__Poxviridae.g__Capripoxvirus, k__Viruses.o__Mononegavirales.f__Nyamiviridae.g__Nyavirus, k__Viruses.f__Chrysoviridae.g__Chrysovirus, k__Viruses.g__Emaravirus, k__Viruses.f__Poxviridae.g__Yatapoxvirus, k__Viruses.f__Poxviridae.g__Orthopoxvirus, k__Viruses.o__Caudovirales.f__Siphoviridae.g__L5likevirus, k__Viruses.f__Hytrosaviridae.g__Muscavirus, k__Viruses.f__Closteroviridae.g__Crinivirus, k__Viruses.f__Iridoviridae.g__Iridovirus, k__Viruses.o__Caudovirales.f__Myoviridae.g__Cp220likevirus, k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Halobiforma, k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Fervidicella, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Wigglesworthia, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Cedecea, k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Cystobacteraceae.g__Hyalangium, k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Imtechella, k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Fibrisoma, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Nitrococcus, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Coxiellaceae.g__Diplorickettsia, k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Rikenellaceae.g__Rikenella, k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Caminibacter, k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Belliella, k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinosynnema, k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natronobacterium, k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Bifidobacteriales.f__Bifidobacteriaceae.g__Alloscardovia, k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Fusobacteriaceae.g__Cetobacterium, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Pelomonas, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Hahellaceae.g__Endozoicomonas, k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanolacinia, k__Archaea.p__Euryarchaeota.c__Methanococci.o__Methanococcales.f__Methanocaldococcaceae.g__Methanotorris, k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudophaeobacter, k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Hydrogenothermaceae.g__Persephonella, k__Archaea.p__Euryarchaeota.c__Methanococci.o__Methanococcales.f__Methanococcaceae.g__Methanothermococcus, k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pelagibaca, k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Raphidiopsis, k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Flaviramulus, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Blochmannia, k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Gorillibacterium, k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Methanomassiliicoccales.f__Methanomassiliicoccaceae.g__Candidatus_Methanoplasma, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Nevskia, k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Bhargavaea, k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halomicrobium, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Oleispira, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Brenneria, k__Bacteria.p__Chrysiogenetes.c__Chrysiogenetes.o__Chrysiogenales.f__Chrysiogenaceae.g__Chrysiogenes, k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Gottschalkia, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomicrobium, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Candidatus_Glomeribacter, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Moellerella, k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Microchaetaceae.g__Microchaete, k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Oxobacter, k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Aphanizomenon, k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Lebetimonas, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Morococcus, k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Ulvibacter, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Marinagarivorans, k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Solitalea, k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Thermoplasmatales.f__Ferroplasmaceae.g__Ferroplasma, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Gilvimarinus, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Dechloromonas, k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Gloeocapsa, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Azovibrio, k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Sulfuricurvum, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Leminorella, k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Geobacteraceae.g__Geoalkalibacter, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Sphaerotilus, k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Psychrobacillus, k__Bacteria.p__Thermotogae.c__Thermotogae.o__Petrotogales.g__Petrotoga, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Halieaceae.g__Haliea, k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Odoribacteraceae.g__Butyricimonas, k__Bacteria.p__Chloroflexi.c__Ardenticatenia.o__Ardenticatenales.f__Ardenticatenaceae.g__Ardenticatena, k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Beijerinckia, k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Aphanocapsa, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Thauera, k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Paucisalibacillus
## 2023-03-15 19:56:25 INFO::Total filtered features with variance filtering: 0
## 2023-03-15 19:56:25 INFO::Filtered feature names from variance filtering:
## 2023-03-15 19:56:25 INFO::Running selected normalization method: NONE
## 2023-03-15 19:56:25 INFO::Applying z-score to standardize continuous metadata
## 2023-03-15 19:56:25 INFO::Running selected transform method: NONE
## 2023-03-15 19:56:25 INFO::Running selected analysis method: LM
## 2023-03-15 19:56:25 INFO::Creating cluster of 6 R processes
## 2023-03-15 19:56:57 INFO::Counting total values for each feature
## 2023-03-15 19:56:57 WARNING::Deleting existing residuals file: Temp/without_group_PC/residuals.rds
## 2023-03-15 19:56:57 INFO::Writing residuals to file Temp/without_group_PC/residuals.rds
## 2023-03-15 19:56:57 WARNING::Deleting existing fitted file: Temp/without_group_PC/fitted.rds
## 2023-03-15 19:56:57 INFO::Writing fitted values to file Temp/without_group_PC/fitted.rds
## 2023-03-15 19:56:57 WARNING::Deleting existing ranef file: Temp/without_group_PC/ranef.rds
## 2023-03-15 19:56:57 INFO::Writing extracted random effects to file Temp/without_group_PC/ranef.rds
## 2023-03-15 19:56:57 INFO::Writing all results to file (ordered by increasing q-values): Temp/without_group_PC/all_results.tsv
## 2023-03-15 19:56:57 INFO::Writing the significant results (those which are less than or equal to the threshold of 0.250000 ) to file (ordered by increasing q-values): Temp/without_group_PC/significant_results.tsv
## 2023-03-15 19:56:57 INFO::Writing heatmap of significant results to file: Temp/without_group_PC/heatmap.pdf
## Warning in xtfrm.data.frame(x): cannot xtfrm data frames
## [1] "There is not enough metadata in the associations to create a heatmap plot. Please review the associations in text output file."
## 2023-03-15 19:56:57 INFO::Writing association plots (one for each significant association) to output folder: Temp/without_group_PC
## 2023-03-15 19:56:58 INFO::Plotting associations from most to least significant, grouped by metadata
## 2023-03-15 19:56:58 INFO::Plotting data for metadata number 1, PC_combined
## 2023-03-15 19:56:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitiniphilus
## 2023-03-15 19:56:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Candidatus_Accumulibacter
## 2023-03-15 19:56:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Sfi1unalikevirus
## 2023-03-15 19:56:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__C2likevirus
## 2023-03-15 19:56:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Poxviridae.g__Parapoxvirus
## 2023-03-15 19:56:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Bicaudaviridae.g__Bicaudavirus
## 2023-03-15 19:56:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Inoviridae.g__Inovirus
## 2023-03-15 19:56:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Caulimoviridae.g__Badnavirus
## 2023-03-15 19:56:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Papillomaviridae.g__Betapapillomavirus
## 2023-03-15 19:56:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Bcep22likevirus
## 2023-03-15 19:56:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Ligamenvirales.f__Lipothrixviridae.g__Deltalipothrixvirus
## 2023-03-15 19:56:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Poxviridae.g__Cervidpoxvirus
## 2023-03-15 19:56:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Papillomaviridae.g__Mupapillomavirus
## 2023-03-15 19:56:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Lambdalikevirus
## 2023-03-15 19:56:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Papillomaviridae.g__Phipapillomavirus
## 2023-03-15 19:56:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Anelloviridae.g__Alphatorquevirus
## 2023-03-15 19:56:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.g__Pithovirus
## 2023-03-15 19:57:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Barnyardlikevirus
## 2023-03-15 19:57:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__P100virus
## 2023-03-15 19:57:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Reoviridae.g__Cypovirus
## 2023-03-15 19:57:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Iltovirus
## 2023-03-15 19:57:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Closteroviridae.g__Closterovirus
## 2023-03-15 19:57:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Viunalikevirus
## 2023-03-15 19:57:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Phicbklikevirus
## 2023-03-15 19:57:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Fuselloviridae.g__Alphafusellovirus
## 2023-03-15 19:57:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Retroviridae.g__Lentivirus
## 2023-03-15 19:57:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Luteoviridae.g__Polerovirus
## 2023-03-15 19:57:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Andromedalikevirus
## 2023-03-15 19:57:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Iridoviridae.g__Lymphocystivirus
## 2023-03-15 19:57:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Poxviridae.g__Avipoxvirus
## 2023-03-15 19:57:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Ligamenvirales.f__Rudiviridae.g__Rudivirus
## 2023-03-15 19:57:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Closteroviridae.g__Ampelovirus
## 2023-03-15 19:57:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Papillomaviridae.g__Gammapapillomavirus
## 2023-03-15 19:57:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Herpesvirales.f__Malacoherpesviridae.g__Ostreavirus
## 2023-03-15 19:57:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Tymovirales.f__Betaflexiviridae.g__Foveavirus
## 2023-03-15 19:57:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.g__Bacilladnavirus
## 2023-03-15 19:57:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Skunalikevirus
## 2023-03-15 19:57:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Phikzlikevirus
## 2023-03-15 19:57:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Orthomyxoviridae.g__Influenzavirus_C
## 2023-03-15 19:57:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phi29likevirus
## 2023-03-15 19:57:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Caulimoviridae.g__Cavemovirus
## 2023-03-15 19:57:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Anelloviridae.g__Betatorquevirus
## 2023-03-15 19:57:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Caulimoviridae.g__Caulimovirus
## 2023-03-15 19:57:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Pbunalikevirus
## 2023-03-15 19:57:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Reoviridae.g__Phytoreovirus
## 2023-03-15 19:57:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Bromoviridae.g__Alfamovirus
## 2023-03-15 19:57:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Sp6likevirus
## 2023-03-15 19:57:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Sphaerolipoviridae.g__Gammasphaerolipovirus
## 2023-03-15 19:57:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Flaviviridae.g__Pegivirus
## 2023-03-15 19:57:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Mononegavirales.f__Rhabdoviridae.g__Vesiculovirus
## 2023-03-15 19:57:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Mononegavirales.f__Rhabdoviridae.g__Lyssavirus
## 2023-03-15 19:57:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Hepadnaviridae.g__Orthohepadnavirus
## 2023-03-15 19:57:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Tymovirales.f__Alphaflexiviridae.g__Allexivirus
## 2023-03-15 19:57:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Parvoviridae.g__Ambidensovirus
## 2023-03-15 19:57:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Comovirus
## 2023-03-15 19:57:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.g__Polemovirus
## 2023-03-15 19:57:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Leviviridae.g__Levivirus
## 2023-03-15 19:57:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phieco32likevirus
## 2023-03-15 19:57:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Reoviridae.g__Aquareovirus
## 2023-03-15 19:57:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Bromoviridae.g__Ilarvirus
## 2023-03-15 19:57:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Narnaviridae.g__Narnavirus
## 2023-03-15 19:57:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Totiviridae.g__Totivirus
## 2023-03-15 19:57:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Chilikevirus
## 2023-03-15 19:57:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Potyviridae.g__Tritimovirus
## 2023-03-15 19:57:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Viroids.f__Pospiviroidae.g__Coleviroid
## 2023-03-15 19:57:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Papillomaviridae.g__Dyopipapillomavirus
## 2023-03-15 19:57:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Siccibacter
## 2023-03-15 19:57:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Neosynechococcus
## 2023-03-15 19:57:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Dolichospermum
## 2023-03-15 19:57:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Aromatoleum
## 2023-03-15 19:57:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Altibacter
## 2023-03-15 19:57:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Methanomassiliicoccales.f__Methanomassiliicoccaceae.g__Candidatus_Methanomethylophilus
## 2023-03-15 19:57:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Nitritalea
## 2023-03-15 19:57:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Mangrovibacter
## 2023-03-15 19:57:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Thalassotalea
## 2023-03-15 19:57:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Pseudoramibacter
## 2023-03-15 19:57:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Reinekea
## 2023-03-15 19:57:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Natronomonas
## 2023-03-15 19:57:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfospira
## 2023-03-15 19:57:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Arenitalea
## 2023-03-15 19:57:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Thermoactinomycetaceae.g__Shimazuella
## 2023-03-15 19:57:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Marinospirillum
## 2023-03-15 19:57:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Gaetbulibacter
## 2023-03-15 19:57:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Basilea
## 2023-03-15 19:57:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Alicyclobacillaceae.g__Effusibacillus
## 2023-03-15 19:57:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitinibacter
## 2023-03-15 19:57:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Gramella
## 2023-03-15 19:57:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanoregulaceae.g__Methanolinea
## 2023-03-15 19:57:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Myxosarcina
## 2023-03-15 19:57:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Gayadomonas
## 2023-03-15 19:57:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomarinum
## 2023-03-15 19:57:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natronorubrum
## 2023-03-15 19:57:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Jeotgalibacillus
## 2023-03-15 19:57:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Zymobacter
## 2023-03-15 19:57:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Prosthecochloris
## 2023-03-15 19:57:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Paeniglutamicibacter
## 2023-03-15 19:57:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halobellus
## 2023-03-15 19:57:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Archaeoglobi.o__Archaeoglobales.f__Archaeoglobaceae.g__Ferroglobus
## 2023-03-15 19:57:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Cyclobacterium
## 2023-03-15 19:57:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Olivibacter
## 2023-03-15 19:57:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Sideroxydans
## 2023-03-15 19:57:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.g__Aciduliprofundum
## 2023-03-15 19:57:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Sediminibacillus
## 2023-03-15 19:57:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Carnobacteriaceae.g__Alloiococcus
## 2023-03-15 19:57:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methanosarcinaceae.g__Methanohalobium
## 2023-03-15 19:57:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Saccharospirillum
## 2023-03-15 19:57:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Robiginitalea
## 2023-03-15 19:57:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Caldimicrobium
## 2023-03-15 19:57:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Actinopolymorpha
## 2023-03-15 19:57:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Candidatus_Phaeomarinobacter
## 2023-03-15 19:57:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Candidatus_Koribacter
## 2023-03-15 19:57:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermabacteraceae.g__Helcobacillus
## 2023-03-15 19:57:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Centipeda
## 2023-03-15 19:57:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Nocardiopsaceae.g__Allosalinactinospora
## 2023-03-15 19:57:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ponticoccus
## 2023-03-15 19:57:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halogranum
## 2023-03-15 19:57:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Pyrococcus
## 2023-03-15 19:57:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Nautilia
## 2023-03-15 19:57:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Obesumbacterium
## 2023-03-15 19:57:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Desulfurobacteriales.f__Desulfurobacteriaceae.g__Thermovibrio
## 2023-03-15 19:57:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Alkalilimnicola
## 2023-03-15 19:57:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Aliiroseovarius
## 2023-03-15 19:57:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halobacterium
## 2023-03-15 19:57:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.g__Thermosulfidibacter
## 2023-03-15 19:57:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Stigonematales.g__Mastigocladopsis
## 2023-03-15 19:57:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Thaumarchaeota.o__Nitrosopumilales.f__Nitrosopumilaceae.g__Candidatus_Nitrosoarchaeum
## 2023-03-15 19:57:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Mesoaciditogales.f__Mesoaciditogaceae.g__Mesoaciditoga
## 2023-03-15 19:57:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Wolinella
## 2023-03-15 19:57:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Thaumarchaeota.o__Nitrosopumilales.f__Nitrosopumilaceae.g__Nitrosopumilus
## 2023-03-15 19:57:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Marinococcus
## 2023-03-15 19:57:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfobacula
## 2023-03-15 19:57:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanoculleus
## 2023-03-15 19:57:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Spongiibacteraceae.g__Dasania
## 2023-03-15 19:57:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Thermincola
## 2023-03-15 19:57:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Shuttleworthia
## 2023-03-15 19:57:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Puniceibacterium
## 2023-03-15 19:57:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylovorus
## 2023-03-15 19:57:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halanaeroarchaeum
## 2023-03-15 19:57:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.o__Thermomicrobiales.f__Thermomicrobiaceae.g__Thermomicrobium
## 2023-03-15 19:57:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halogeometricum
## 2023-03-15 19:57:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Thermocrinis
## 2023-03-15 19:57:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Arhodomonas
## 2023-03-15 19:57:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanofollis
## 2023-03-15 19:57:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.g__Hoyosella
## 2023-03-15 19:57:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Mesonia
## 2023-03-15 19:57:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Basfia
## 2023-03-15 19:57:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Candidatus_Atelocyanobacterium
## 2023-03-15 19:57:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Thalassolituus
## 2023-03-15 19:57:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Allobaculum
## 2023-03-15 19:57:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Coriobacterium
## 2023-03-15 19:57:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Amphritea
## 2023-03-15 19:57:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Haloplanus
## 2023-03-15 19:57:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Flagellimonas
## 2023-03-15 19:57:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Thermoproteales.f__Thermoproteaceae.g__Vulcanisaeta
## 2023-03-15 19:57:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Spongiibacteraceae.g__Zhongshania
## 2023-03-15 19:57:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Bermanella
## 2023-03-15 19:57:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Afifella
## 2023-03-15 19:57:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Rummeliibacillus
## 2023-03-15 19:57:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfurivibrio
## 2023-03-15 19:57:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Salinibacillus
## 2023-03-15 19:57:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Pseudobutyrivibrio
## 2023-03-15 19:57:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Kosmotogales.f__Kosmotogaceae.g__Mesotoga
## 2023-03-15 19:57:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Paracaedibacteraceae.g__Candidatus_Odyssella
## 2023-03-15 19:57:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Holdemania
## 2023-03-15 19:57:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Balneatrix
## 2023-03-15 19:57:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Dielma
## 2023-03-15 19:57:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Terribacillus
## 2023-03-15 19:57:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Acidilobales.f__Acidilobaceae.g__Acidilobus
## 2023-03-15 19:57:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanoplanus
## 2023-03-15 19:57:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Oxalobacteraceae.g__Oxalobacter
## 2023-03-15 19:57:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseibacterium
## 2023-03-15 19:57:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Tistrella
## 2023-03-15 19:57:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Lentzea
## 2023-03-15 19:57:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Halolactibacillus
## 2023-03-15 19:57:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Lacimicrobium
## 2023-03-15 19:57:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Halostagnicola
## 2023-03-15 19:57:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Adlercreutzia
## 2023-03-15 19:57:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Legionellaceae.g__Tatlockia
## 2023-03-15 19:57:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Candidatus_Photodesmus
## 2023-03-15 19:57:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfonatronospira
## 2023-03-15 19:57:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Nereida
## 2023-03-15 19:57:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Cloacibacillus
## 2023-03-15 19:57:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Thaumarchaeota.g__Candidatus_Nitrosotenuis
## 2023-03-15 19:57:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Thermoproteales.f__Thermoproteaceae.g__Caldivirga
## 2023-03-15 19:57:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Subdoligranulum
## 2023-03-15 19:57:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Halopiger
## 2023-03-15 19:57:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Sfi21dtunalikevirus
## 2023-03-15 19:57:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Circoviridae.g__Gyrovirus
## 2023-03-15 19:57:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__T5likevirus
## 2023-03-15 19:57:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__N4likevirus
## 2023-03-15 19:57:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Glycomycetales.f__Glycomycetaceae.g__Haloglycomyces
## 2023-03-15 19:57:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Tymovirales.f__Betaflexiviridae.g__Trichovirus
## 2023-03-15 19:57:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Cheravirus
## 2023-03-15 19:57:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanoregulaceae.g__Methanosphaerula
## 2023-03-15 19:57:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phikmvlikevirus
## 2023-03-15 19:57:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Sellimonas
## 2023-03-15 19:57:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Thalassomonas
## 2023-03-15 19:57:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Bunyaviridae.g__Hantavirus
## 2023-03-15 19:57:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Haloarcula
## 2023-03-15 19:57:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Virgaviridae.g__Pecluvirus
## 2023-03-15 19:57:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Hydrogenovibrio
## 2023-03-15 19:57:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.o__Haloplasmatales.f__Haloplasmataceae.g__Haloplasma
## 2023-03-15 19:57:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatiglans
## 2023-03-15 19:57:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Yokenella
## 2023-03-15 19:57:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Candidatus_Methylopumilus
## 2023-03-15 19:57:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Azonexus
## 2023-03-15 19:57:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Nisaea
## 2023-03-15 19:57:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Aequorivita
## 2023-03-15 19:57:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Dactylococcopsis
## 2023-03-15 19:57:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bradyrhizobiaceae.g__Oligotropha
## 2023-03-15 19:57:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Sedimenticola
## 2023-03-15 19:57:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Catenovulum
## 2023-03-15 19:57:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.c__Spartobacteria.g__Candidatus_Xiphinematobacter
## 2023-03-15 19:57:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Salinimonas
## 2023-03-15 19:57:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Pelodictyon
## 2023-03-15 19:57:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halarchaeum
## 2023-03-15 19:57:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Coprobacter
## 2023-03-15 19:57:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Chloroflexia.o__Chloroflexales.f__Oscillochloridaceae.g__Oscillochloris
## 2023-03-15 19:57:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.f__Competibacteraceae.g__Candidatus_Competibacter
## 2023-03-15 19:57:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halalkalicoccus
## 2023-03-15 19:57:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Pyrodictiaceae.g__Pyrodictium
## 2023-03-15 19:57:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatirhabdium
## 2023-03-15 19:57:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Citreicella
## 2023-03-15 19:57:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatitalea
## 2023-03-15 19:57:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Nocardiopsaceae.g__Streptomonospora
## 2023-03-15 19:57:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Litoreibacter
## 2023-03-15 19:57:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Maritalea
## 2023-03-15 19:57:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.g__Methyloceanibacter
## 2023-03-15 19:57:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiocystis
## 2023-03-15 19:57:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Rubidibacter
## 2023-03-15 19:57:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylothermaceae.g__Methylohalobius
## 2023-03-15 19:57:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.g__Tenuivirus
## 2023-03-15 19:57:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.g__Thermobaculum
## 2023-03-15 19:57:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Youngiibacter
## 2023-03-15 19:57:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Rudanella
## 2023-03-15 19:57:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Agarivorans
## 2023-03-15 19:57:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Deferribacter
## 2023-03-15 19:57:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Tolumonas
## 2023-03-15 19:57:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Cryomorphaceae.g__Owenweeksia
## 2023-03-15 19:57:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Clostridium
## 2023-03-15 19:57:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Aliihoeflea
## 2023-03-15 19:57:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prolixibacteraceae.g__Prolixibacter
## 2023-03-15 19:57:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Leeuwenhoekiella
## 2023-03-15 19:57:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Marinimicrobium
## 2023-03-15 19:57:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Gynuella
## 2023-03-15 19:57:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Salinivibrio
## 2023-03-15 19:57:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.c__Spartobacteria.g__Terrimicrobium
## 2023-03-15 19:57:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Renibacterium
## 2023-03-15 19:57:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Leeia
## 2023-03-15 19:57:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Thaumarchaeota.g__Candidatus_Nitrosopelagicus
## 2023-03-15 19:57:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Thermotogaceae.g__Pseudothermotoga
## 2023-03-15 19:57:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Vibrio
## 2023-03-15 19:57:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Microvirgula
## 2023-03-15 19:57:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Lymphocryptovirus
## 2023-03-15 19:57:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Flexilinea
## 2023-03-15 19:57:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Hydrogenobacter
## 2023-03-15 19:57:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Cyanobacterium
## 2023-03-15 19:57:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Microcoleus
## 2023-03-15 19:57:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Chelonobacter
## 2023-03-15 19:57:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Glutamicibacter
## 2023-03-15 19:57:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Candidatus_Puniceispirillum
## 2023-03-15 19:57:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Holdemanella
## 2023-03-15 19:57:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Acidilobales.f__Caldisphaeraceae.g__Caldisphaera
## 2023-03-15 19:57:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Isosphaeraceae.g__Singulisphaera
## 2023-03-15 19:57:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Crocinitomicaceae.g__Crocinitomix
## 2023-03-15 19:57:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Bromoviridae.g__Cucumovirus
## 2023-03-15 19:57:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Blastopirellula
## 2023-03-15 19:57:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Cryobacterium
## 2023-03-15 19:57:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Actinotignum
## 2023-03-15 19:57:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Stanieria
## 2023-03-15 19:57:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methanosarcinaceae.g__Methanohalophilus
## 2023-03-15 19:57:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Mimiviridae.g__Mimivirus
## 2023-03-15 19:57:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Pseudaminobacter
## 2023-03-15 19:57:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Ideonella
## 2023-03-15 19:57:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Ammonifex
## 2023-03-15 19:57:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Leuconostocaceae.g__Leuconostoc
## 2023-03-15 19:57:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Geovibrio
## 2023-03-15 19:57:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Jejuia
## 2023-03-15 19:57:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Thermopetrobacter
## 2023-03-15 19:57:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Cryocola
## 2023-03-15 19:57:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Wohlfahrtiimonas
## 2023-03-15 19:57:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Halotalea
## 2023-03-15 19:57:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Parvularculales.f__Parvularculaceae.g__Parvularcula
## 2023-03-15 19:57:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Chroococcidiopsis
## 2023-03-15 19:57:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Longilinea
## 2023-03-15 19:57:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Aerococcaceae.g__Eremococcus
## 2023-03-15 19:57:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Moranella
## 2023-03-15 19:57:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Poxviridae.g__Alphaentomopoxvirus
## 2023-03-15 19:57:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Riesia
## 2023-03-15 19:57:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.g__Timonella
## 2023-03-15 19:57:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Cyanobium
## 2023-03-15 19:57:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Campylobacteraceae.g__Sulfurospirillum
## 2023-03-15 19:57:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanoregulaceae.g__Methanoregula
## 2023-03-15 19:57:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Pleurocapsa
## 2023-03-15 19:57:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ketogulonicigenium
## 2023-03-15 19:57:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Acaricomes
## 2023-03-15 19:57:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Gallionella
## 2023-03-15 19:57:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Isosphaeraceae.g__Isosphaera
## 2023-03-15 19:57:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Amphibacillus
## 2023-03-15 19:57:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Spirochaetaceae.g__Treponema
## 2023-03-15 19:57:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Novispirillum
## 2023-03-15 19:57:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Hydrogenibacillus
## 2023-03-15 19:57:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Bdellovibrionales.f__Bacteriovoracaceae.g__Bacteriovorax
## 2023-03-15 19:57:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Aestuariivita
## 2023-03-15 19:57:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Bacteroidaceae.g__Bacteroides
## 2023-03-15 19:57:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pragia
## 2023-03-15 19:57:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Thaumarchaeota.c__Nitrososphaeria.o__Nitrososphaerales.f__Nitrososphaeraceae.g__Nitrososphaera
## 2023-03-15 19:57:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Enterovirus
## 2023-03-15 19:57:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Aurantimonadaceae.g__Fulvimarina
## 2023-03-15 19:57:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Dermatophilus
## 2023-03-15 19:57:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Deefgea
## 2023-03-15 19:57:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Kerstersia
## 2023-03-15 19:57:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.g__Candidatus_Babela
## 2023-03-15 19:57:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Allokutzneria
## 2023-03-15 19:57:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Candidatus_Ruthia
## 2023-03-15 19:57:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Fermentimonas
## 2023-03-15 19:57:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Fictibacillus
## 2023-03-15 19:57:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Mycobacteriaceae.g__Mycobacterium
## 2023-03-15 19:57:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Salipiger
## 2023-03-15 19:57:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Ignavibacteriae.c__Ignavibacteria.o__Ignavibacteriales.f__Melioribacteraceae.g__Melioribacter
## 2023-03-15 19:57:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Flaviflexus
## 2023-03-15 19:57:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Hellea
## 2023-03-15 19:57:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Veillonellales.f__Veillonellaceae.g__Megasphaera
## 2023-03-15 19:57:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Leadbetterella
## 2023-03-15 19:57:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Mariniradius
## 2023-03-15 19:57:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Bdellovibrionales.f__Halobacteriovoraceae.g__Halobacteriovorax
## 2023-03-15 19:57:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudorhodobacter
## 2023-03-15 19:57:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Ignatzschineria
## 2023-03-15 19:57:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Thioploca
## 2023-03-15 19:57:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Paramesorhizobium
## 2023-03-15 19:57:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.g__Nitratiruptor
## 2023-03-15 19:57:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Kurthia
## 2023-03-15 19:57:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_III._Incertae_Sedis.g__Caldicellulosiruptor
## 2023-03-15 19:57:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_IV._Incertae_Sedis.g__Mahella
## 2023-03-15 19:57:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.o__Bacteroidetes_Order_II._Incertae_sedis.f__Rhodothermaceae.g__Salisaeta
## 2023-03-15 19:57:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Myxococcaceae.g__Corallococcus
## 2023-03-15 19:57:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Herbiconiux
## 2023-03-15 19:57:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Sphingorhabdus
## 2023-03-15 19:57:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Wolbachia
## 2023-03-15 19:57:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Caliciviridae.g__Vesivirus
## 2023-03-15 19:57:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Echinicola
## 2023-03-15 19:57:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Colwellia
## 2023-03-15 19:57:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methanosarcinaceae.g__Methanosarcina
## 2023-03-15 19:57:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Gemmata
## 2023-03-15 19:57:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Candidatus_Stoquefichus
## 2023-03-15 19:57:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Thermanaerothrix
## 2023-03-15 19:57:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Proteus
## 2023-03-15 19:57:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Mitsuaria
## 2023-03-15 19:57:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Anaerophaga
## 2023-03-15 19:57:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Acidocella
## 2023-03-15 19:57:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Virgibacillus
## 2023-03-15 19:57:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Coprococcus
## 2023-03-15 19:57:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Rhodovibrio
## 2023-03-15 19:57:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Hafnia
## 2023-03-15 19:57:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Caulobacterales.f__Caulobacteraceae.g__Woodsholea
## 2023-03-15 19:57:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Phaeodactylibacter
## 2023-03-15 19:57:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Pyramidobacter
## 2023-03-15 19:57:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Flexistipes
## 2023-03-15 19:57:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sedimentitalea
## 2023-03-15 19:57:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Thermosynechococcus
## 2023-03-15 19:57:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Bifidobacteriales.f__Bifidobacteriaceae.g__Parascardovia
## 2023-03-15 19:57:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Spirochaetaceae.g__Salinispira
## 2023-03-15 19:57:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Yersinia
## 2023-03-15 19:57:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Oxalobacteraceae.g__Pseudoduganella
## 2023-03-15 19:57:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.o__Bacteroidetes_Order_II._Incertae_sedis.f__Rhodothermaceae.g__Salinibacter
## 2023-03-15 19:57:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Granulibacter
## 2023-03-15 19:57:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Christensenellaceae.g__Christensenella
## 2023-03-15 19:57:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiorhodococcus
## 2023-03-15 19:57:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermodesulfobiaceae.g__Thermodesulfobium
## 2023-03-15 19:57:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Xylanimonas
## 2023-03-15 19:57:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Silanimonas
## 2023-03-15 19:57:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Joostella
## 2023-03-15 19:57:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Haloterrigena
## 2023-03-15 19:57:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Eggerthia
## 2023-03-15 19:57:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Rhodothermaeota.c__Balneolia.o__Balneolales.f__Balneolaceae.g__Balneola
## 2023-03-15 19:57:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Proteiniclasticum
## 2023-03-15 19:57:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Derxia
## 2023-03-15 19:57:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Paraoerskovia
## 2023-03-15 19:57:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Kandleria
## 2023-03-15 19:57:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Desulfuromonadaceae.g__Desulfuromonas
## 2023-03-15 19:57:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.g__Kallipyga
## 2023-03-15 19:57:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Sediminibacter
## 2023-03-15 19:57:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Thermales.f__Thermaceae.g__Marinithermus
## 2023-03-15 19:57:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylococcus
## 2023-03-15 19:57:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Mimiviridae.g__Cafeteriavirus
## 2023-03-15 19:57:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Chloroherpeton
## 2023-03-15 19:57:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfotignum
## 2023-03-15 19:57:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Listeriaceae.g__Listeria
## 2023-03-15 19:57:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Aquamicrobium
## 2023-03-15 19:57:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Polydnaviridae.g__Ichnovirus
## 2023-03-15 19:57:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Luteibacter
## 2023-03-15 19:57:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Sanguibacteroides
## 2023-03-15 19:57:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Mannheimia
## 2023-03-15 19:57:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Gluconacetobacter
## 2023-03-15 19:57:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natrinema
## 2023-03-15 19:57:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Pseudoalteromonadaceae.g__Pseudoalteromonas
## 2023-03-15 19:57:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylobacillus
## 2023-03-15 19:57:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Nodosilinea
## 2023-03-15 19:57:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Chelativorans
## 2023-03-15 19:57:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Paraburkholderia
## 2023-03-15 19:57:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylovulum
## 2023-03-15 19:57:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Prochlorales.f__Prochlorotrichaceae.g__Prochlorothrix
## 2023-03-15 19:57:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Aquamavirus
## 2023-03-15 19:57:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Thermomonosporaceae.g__Thermomonospora
## 2023-03-15 19:57:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Methylocapsa
## 2023-03-15 19:57:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophaceae.g__Syntrophus
## 2023-03-15 19:57:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Thermales.f__Thermaceae.g__Oceanithermus
## 2023-03-15 19:57:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Propionispira
## 2023-03-15 19:57:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.g__Acidibacillus
## 2023-03-15 19:57:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Hepeviridae.g__Piscihepevirus
## 2023-03-15 19:57:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bradyrhizobiaceae.g__Tardiphaga
## 2023-03-15 19:57:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Pseudoflavonifractor
## 2023-03-15 19:57:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Kineosporiales.f__Kineosporiaceae.g__Kineosporia
## 2023-03-15 19:57:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Siansivirga
## 2023-03-15 19:57:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Chlamydiaceae.g__Chlamydia
## 2023-03-15 19:57:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Fabavirus
## 2023-03-15 19:57:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Oceaniovalibus
## 2023-03-15 19:57:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Ignavibacteriae.c__Ignavibacteria.o__Ignavibacteriales.f__Ignavibacteriaceae.g__Ignavibacterium
## 2023-03-15 19:57:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Uliginosibacterium
## 2023-03-15 19:57:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Palaeococcus
## 2023-03-15 19:57:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Mucispirillum
## 2023-03-15 19:57:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Marvinbryantia
## 2023-03-15 19:57:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Aeromonas
## 2023-03-15 19:57:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Escherichia
## 2023-03-15 19:57:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Kushneria
## 2023-03-15 19:57:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Halobacteroides
## 2023-03-15 19:57:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Archaeoglobi.o__Archaeoglobales.f__Archaeoglobaceae.g__Geoglobus
## 2023-03-15 19:57:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Anaerostipes
## 2023-03-15 19:57:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Richelia
## 2023-03-15 19:57:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Kordiimonadales.f__Kordiimonadaceae.g__Kordiimonas
## 2023-03-15 19:57:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Aeribacillus
## 2023-03-15 19:57:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Candidatus_Neoehrlichia
## 2023-03-15 19:57:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Dethiosulfovibrio
## 2023-03-15 19:57:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halanaerobiaceae.g__Halothermothrix
## 2023-03-15 19:57:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudooceanicola
## 2023-03-15 19:57:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Lentibacillus
## 2023-03-15 19:57:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Franconibacter
## 2023-03-15 19:57:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfocapsa
## 2023-03-15 19:57:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Shimwellia
## 2023-03-15 19:57:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Gordoniaceae.g__Gordonia
## 2023-03-15 19:57:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Stappia
## 2023-03-15 19:57:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Candidatus_Aquiluna
## 2023-03-15 19:57:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Tepidicaulis
## 2023-03-15 19:57:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Geodermatophilales.f__Geodermatophilaceae.g__Geodermatophilus
## 2023-03-15 19:57:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Microterricola
## 2023-03-15 19:57:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.f__Leptospiraceae.g__Leptonema
## 2023-03-15 19:57:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.g__Nitratifractor
## 2023-03-15 19:57:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Saccharibacter
## 2023-03-15 19:57:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudodonghicola
## 2023-03-15 19:57:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Dicistroviridae.g__Cripavirus
## 2023-03-15 19:57:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Denitrobacterium
## 2023-03-15 19:57:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Ishikawaella
## 2023-03-15 19:57:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Akkermansiaceae.g__Akkermansia
## 2023-03-15 19:57:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Rubritepida
## 2023-03-15 19:57:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Hydrogenophilales.f__Hydrogenophilaceae.g__Thiobacillus
## 2023-03-15 19:57:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Xenococcus
## 2023-03-15 19:57:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Spongiibacteraceae.g__Spongiibacter
## 2023-03-15 19:57:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Riemerella
## 2023-03-15 19:57:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Nitrincola
## 2023-03-15 19:57:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Legionellaceae.g__Fluoribacter
## 2023-03-15 19:57:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Simplexvirus
## 2023-03-15 19:57:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Terasakiella
## 2023-03-15 19:57:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Arenaviridae.g__Arenavirus
## 2023-03-15 19:57:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Dongia
## 2023-03-15 19:57:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Lunatimonas
## 2023-03-15 19:57:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Tetrasphaera
## 2023-03-15 19:57:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Gallaecimonas
## 2023-03-15 19:57:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Ewingella
## 2023-03-15 19:57:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Flavisolibacter
## 2023-03-15 19:57:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Capnocytophaga
## 2023-03-15 19:57:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Sporomusaceae.g__Pelosinus
## 2023-03-15 19:57:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Kribbella
## 2023-03-15 19:57:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Enterorhabdus
## 2023-03-15 19:57:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Pelistega
## 2023-03-15 19:57:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfosarcina
## 2023-03-15 19:57:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Thiolapillus
## 2023-03-15 19:57:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Simiduia
## 2023-03-15 19:57:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Oceanicaulis
## 2023-03-15 19:57:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Alkaliphilus
## 2023-03-15 19:57:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinopolysporales.f__Actinopolysporaceae.g__Actinopolyspora
## 2023-03-15 19:57:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sulfitobacter
## 2023-03-15 19:57:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Simkaniaceae.g__Simkania
## 2023-03-15 19:57:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Chitinimonas
## 2023-03-15 19:57:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfohalobium
## 2023-03-15 19:57:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfovibrionaceae.g__Lawsonia
## 2023-03-15 19:57:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Dinoroseobacter
## 2023-03-15 19:57:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sediminimonas
## 2023-03-15 19:57:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Andreprevotia
## 2023-03-15 19:57:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Hoeflea
## 2023-03-15 19:57:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Peptostreptococcus
## 2023-03-15 19:57:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Nitrosococcus
## 2023-03-15 19:57:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Castellaniella
## 2023-03-15 19:57:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Geobacteraceae.g__Geopsychrobacter
## 2023-03-15 19:57:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Bunyaviridae.g__Orthobunyavirus
## 2023-03-15 19:57:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Lacinutrix
## 2023-03-15 19:57:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Beggiatoa
## 2023-03-15 19:57:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Carboxydothermus
## 2023-03-15 19:57:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Polyangiaceae.g__Sorangium
## 2023-03-15 19:57:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Cucumibacter
## 2023-03-15 19:57:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Leptolinea
## 2023-03-15 19:57:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Acidobacterium
## 2023-03-15 19:57:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Acidimicrobium
## 2023-03-15 19:57:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Vitreoscilla
## 2023-03-15 19:57:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Kluyvera
## 2023-03-15 19:57:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Prauserella
## 2023-03-15 19:57:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Blastomonas
## 2023-03-15 19:57:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Gulbenkiania
## 2023-03-15 19:57:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Fusobacteriaceae.g__Ilyobacter
## 2023-03-15 19:57:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oleiphilaceae.g__Oleiphilus
## 2023-03-15 19:57:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Steroidobacter
## 2023-03-15 19:57:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Eudoraea
## 2023-03-15 19:57:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Blautia
## 2023-03-15 19:57:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Starkeya
## 2023-03-15 19:57:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Austwickia
## 2023-03-15 19:57:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Gemmobacter
## 2023-03-15 19:57:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Enteractinococcus
## 2023-03-15 19:57:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Histophilus
## 2023-03-15 19:57:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Yaniella
## 2023-03-15 19:57:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Diaphorobacter
## 2023-03-15 19:57:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinomycetospora
## 2023-03-15 19:57:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Poxviridae.g__Leporipoxvirus
## 2023-03-15 19:57:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Psychroflexus
## 2023-03-15 19:57:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Flavobacterium
## 2023-03-15 19:57:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Ilumatobacter
## 2023-03-15 19:57:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Amoebophilaceae.g__Candidatus_Amoebophilus
## 2023-03-15 19:57:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Oerskovia
## 2023-03-15 19:57:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Levilinea
## 2023-03-15 19:57:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Lewinella
## 2023-03-15 19:57:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanococci.o__Methanococcales.f__Methanococcaceae.g__Methanococcus
## 2023-03-15 19:57:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Octadecabacter
## 2023-03-15 19:57:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Fibrobacteres.c__Fibrobacteria.o__Fibrobacterales.f__Fibrobacteraceae.g__Fibrobacter
## 2023-03-15 19:57:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Yonghaparkia
## 2023-03-15 19:57:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Tunalikevirus
## 2023-03-15 19:57:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Zymomonas
## 2023-03-15 19:57:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Jannaschia
## 2023-03-15 19:57:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Allochromatium
## 2023-03-15 19:57:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Waddliaceae.g__Waddlia
## 2023-03-15 19:57:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Limnochordia.o__Limnochordales.f__Limnochordaceae.g__Limnochorda
## 2023-03-15 19:57:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Aliagarivorans
## 2023-03-15 19:57:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Isoptericola
## 2023-03-15 19:57:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudovibrio
## 2023-03-15 19:57:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Chitinophaga
## 2023-03-15 19:57:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Anaerovibrio
## 2023-03-15 19:57:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Haloferax
## 2023-03-15 19:57:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Salinimicrobium
## 2023-03-15 19:57:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfonatronovibrio
## 2023-03-15 19:57:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Crocinitomicaceae.g__Fluviicola
## 2023-03-15 19:57:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Anaerofustis
## 2023-03-15 19:57:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Elusimicrobia.c__Elusimicrobia.o__Elusimicrobiales.f__Elusimicrobiaceae.g__Elusimicrobium
## 2023-03-15 19:57:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Melissococcus
## 2023-03-15 19:58:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_III._Incertae_Sedis.g__Thermosediminibacter
## 2023-03-15 19:58:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chrysiogenetes.c__Chrysiogenetes.o__Chrysiogenales.f__Chrysiogenaceae.g__Desulfurispirillum
## 2023-03-15 19:58:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Thermoplasmatales.f__Picrophilaceae.g__Picrophilus
## 2023-03-15 19:58:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thalassobacter
## 2023-03-15 19:58:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Hahellaceae.g__Hahella
## 2023-03-15 19:58:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhizobiaceae.g__Rhizobium
## 2023-03-15 19:58:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Marseilleviridae.g__Marseillevirus
## 2023-03-15 19:58:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Salegentibacter
## 2023-03-15 19:58:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sagittula
## 2023-03-15 19:58:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Betacoronavirus
## 2023-03-15 19:58:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Alphacoronavirus
## 2023-03-15 19:58:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Halorhodospira
## 2023-03-15 19:58:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Myroides
## 2023-03-15 19:58:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Parvibaculum
## 2023-03-15 19:58:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Leuconostocaceae.g__Weissella
## 2023-03-15 19:58:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Thermodesulfatator
## 2023-03-15 19:58:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Nostoc
## 2023-03-15 19:58:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Apibacter
## 2023-03-15 19:58:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Leptotrichiaceae.g__Streptobacillus
## 2023-03-15 19:58:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Brucellaceae.g__Ochrobactrum
## 2023-03-15 19:58:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Mycoplasmatales.f__Mycoplasmataceae.g__Ureaplasma
## 2023-03-15 19:58:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zunongwangia
## 2023-03-15 19:58:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Anaerobacillus
## 2023-03-15 19:58:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ahrensia
## 2023-03-15 19:58:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Ponticaulis
## 2023-03-15 19:58:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Frateuria
## 2023-03-15 19:58:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Anaeromyxobacteraceae.g__Anaeromyxobacter
## 2023-03-15 19:58:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Rouxiella
## 2023-03-15 19:58:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Micavibrio
## 2023-03-15 19:58:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Confluentimicrobium
## 2023-03-15 19:58:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prevotellaceae.g__Hallella
## 2023-03-15 19:58:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Microthrixaceae.g__Candidatus_Microthrix
## 2023-03-15 19:58:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Iridoviridae.g__Ranavirus
## 2023-03-15 19:58:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.g__Exiguobacterium
## 2023-03-15 19:58:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Partitiviridae.g__Betapartitivirus
## 2023-03-15 19:58:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Sediminicola
## 2023-03-15 19:58:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Catellicoccus
## 2023-03-15 19:58:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Pusillimonas
## 2023-03-15 19:58:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Lentisphaerae.c__Lentisphaeria.o__Lentisphaerales.f__Lentisphaeraceae.g__Lentisphaera
## 2023-03-15 19:58:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Terracoccus
## 2023-03-15 19:58:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Varicellovirus
## 2023-03-15 19:58:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Spounalikevirus
## 2023-03-15 19:58:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanobacteriaceae.g__Methanosphaera
## 2023-03-15 19:58:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Kamptonema
## 2023-03-15 19:58:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Sutterellaceae.g__Sutterella
## 2023-03-15 19:58:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Faecalibaculum
## 2023-03-15 19:58:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Aminomonas
## 2023-03-15 19:58:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Granulicella
## 2023-03-15 19:58:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Raoultella
## 2023-03-15 19:58:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Synergistes
## 2023-03-15 19:58:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Lactobacillaceae.g__Sharpea
## 2023-03-15 19:58:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Maritimibacter
## 2023-03-15 19:58:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylobacteriaceae.g__Microvirga
## 2023-03-15 19:58:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfovibrionaceae.g__Bilophila
## 2023-03-15 19:58:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Candidatus_Profftella
## 2023-03-15 19:58:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Opitutales.f__Opitutaceae.g__Cephaloticoccus
## 2023-03-15 19:58:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Crenobacter
## 2023-03-15 19:58:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cardiobacteriales.f__Cardiobacteriaceae.g__Cardiobacterium
## 2023-03-15 19:58:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Arenimonas
## 2023-03-15 19:58:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Olleya
## 2023-03-15 19:58:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Flaviviridae.g__Pestivirus
## 2023-03-15 19:58:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Hahellaceae.g__Zooshikella
## 2023-03-15 19:58:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.f__Leptospiraceae.g__Turneriella
## 2023-03-15 19:58:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Polyangiaceae.g__Chondromyces
## 2023-03-15 19:58:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Mobilicoccus
## 2023-03-15 19:58:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Terrabacter
## 2023-03-15 19:58:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfarculales.f__Desulfarculaceae.g__Dethiosulfatarculus
## 2023-03-15 19:58:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Aquimarina
## 2023-03-15 19:58:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Desulfurococcaceae.g__Staphylothermus
## 2023-03-15 19:58:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Actinocatenispora
## 2023-03-15 19:58:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Sandarakinorhabdus
## 2023-03-15 19:58:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Comamonas
## 2023-03-15 19:58:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Halothece
## 2023-03-15 19:58:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Thermocrispum
## 2023-03-15 19:58:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Thalassobaculum
## 2023-03-15 19:58:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Limnobacter
## 2023-03-15 19:58:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Pseudohongiella
## 2023-03-15 19:58:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfarculales.f__Desulfarculaceae.g__Desulfarculus
## 2023-03-15 19:58:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Caulobacterales.f__Caulobacteraceae.g__Phenylobacterium
## 2023-03-15 19:58:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Microchaetaceae.g__Tolypothrix
## 2023-03-15 19:58:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Longispora
## 2023-03-15 19:58:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pantoea
## 2023-03-15 19:58:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.g__Phocaeicola
## 2023-03-15 19:58:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Stigonematales.g__Hapalosiphon
## 2023-03-15 19:58:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Desulfurococcaceae.g__Ignicoccus
## 2023-03-15 19:58:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Virgaviridae.g__Pomovirus
## 2023-03-15 19:58:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Nitrosomonadales.f__Nitrosomonadaceae.g__Nitrosospira
## 2023-03-15 19:58:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Asaia
## 2023-03-15 19:58:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Aquincola
## 2023-03-15 19:58:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Helcococcus
## 2023-03-15 19:58:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Nonlabens
## 2023-03-15 19:58:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Sulfuritalea
## 2023-03-15 19:58:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Galbibacter
## 2023-03-15 19:58:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Acidobacteria.c__Solibacteres.o__Solibacterales.g__Bryobacter
## 2023-03-15 19:58:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Enterococcus
## 2023-03-15 19:58:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobiaceae.g__Haloferula
## 2023-03-15 19:58:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Campylobacteraceae.g__Campylobacter
## 2023-03-15 19:58:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Oceanospirillum
## 2023-03-15 19:58:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Halonatronum
## 2023-03-15 19:58:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Holosporaceae.g__Holospora
## 2023-03-15 19:58:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Leucothrix
## 2023-03-15 19:58:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Pelagibacterium
## 2023-03-15 19:58:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Shimia
## 2023-03-15 19:58:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Eggerthella
## 2023-03-15 19:58:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Kibdelosporangium
## 2023-03-15 19:58:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Polycyclovorans
## 2023-03-15 19:58:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Viridibacillus
## 2023-03-15 19:58:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseivivax
## 2023-03-15 19:58:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseovarius
## 2023-03-15 19:58:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Verrucosispora
## 2023-03-15 19:58:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Epulopiscium
## 2023-03-15 19:58:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Candidatus_Desulforudis
## 2023-03-15 19:58:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Rubinisphaera
## 2023-03-15 19:58:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Maribacter
## 2023-03-15 19:58:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Oleiagrimonas
## 2023-03-15 19:58:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Magnetococcales.f__Magnetococcaceae.g__Magnetococcus
## 2023-03-15 19:58:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Niabella
## 2023-03-15 19:58:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Methylopila
## 2023-03-15 19:58:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Syntrophobotulus
## 2023-03-15 19:58:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Pseudolabrys
## 2023-03-15 19:58:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Thermonemataceae.g__Thermonema
## 2023-03-15 19:58:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Paenisporosarcina
## 2023-03-15 19:58:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Microbulbiferaceae.g__Microbulbifer
## 2023-03-15 19:58:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Halieaceae.g__Luminiphilus
## 2023-03-15 19:58:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Mycoplasmatales.f__Mycoplasmataceae.g__Mycoplasma
## 2023-03-15 19:58:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Teredinibacter
## 2023-03-15 19:58:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Crocosphaera
## 2023-03-15 19:58:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Thermoanaerobacter
## 2023-03-15 19:58:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Xylella
## 2023-03-15 19:58:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Propionibacteriaceae.g__Propionimicrobium
## 2023-03-15 19:58:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfovermiculus
## 2023-03-15 19:58:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Croceibacter
## 2023-03-15 19:58:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Neorickettsia
## 2023-03-15 19:58:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Psychromonadaceae.g__Psychromonas
## 2023-03-15 19:58:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Thermococcus
## 2023-03-15 19:58:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Tanticharoenia
## 2023-03-15 19:58:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Chryseobacterium
## 2023-03-15 19:58:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomonas
## 2023-03-15 19:58:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Thermanaerovibrio
## 2023-03-15 19:58:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Chania
## 2023-03-15 19:58:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.g__Reyranella
## 2023-03-15 19:58:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Thioalkalimicrobium
## 2023-03-15 19:58:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitinilyticum
## 2023-03-15 19:58:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Methylibium
## 2023-03-15 19:58:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Alkaliflexus
## 2023-03-15 19:58:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Filomicrobium
## 2023-03-15 19:58:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Glaciecola
## 2023-03-15 19:58:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Agrococcus
## 2023-03-15 19:58:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Emticicia
## 2023-03-15 19:58:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Ornithobacterium
## 2023-03-15 19:58:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Rikenellaceae.g__Mucinivorans
## 2023-03-15 19:58:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Catelliglobosispora
## 2023-03-15 19:58:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Dokdonella
## 2023-03-15 19:58:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Adenoviridae.g__Mastadenovirus
## 2023-03-15 19:58:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Flavihumibacter
## 2023-03-15 19:58:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Rhodomicrobium
## 2023-03-15 19:58:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Coprobacillus
## 2023-03-15 19:58:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bartonellaceae.g__Bartonella
## 2023-03-15 19:58:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.g__Caedibacter
## 2023-03-15 19:58:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Dehalococcoidia.g__Dehalogenimonas
## 2023-03-15 19:58:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophaceae.g__Desulfomonile
## 2023-03-15 19:58:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Cesiribacter
## 2023-03-15 19:58:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Acetobacter
## 2023-03-15 19:58:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Cyanothece
## 2023-03-15 19:58:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Tenacibaculum
## 2023-03-15 19:58:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.c__Spartobacteria.o__Chthoniobacterales.f__Chthoniobacteraceae.g__Chthoniobacter
## 2023-03-15 19:58:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Croceitalea
## 2023-03-15 19:58:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Tachikawaea
## 2023-03-15 19:58:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Mucilaginibacter
## 2023-03-15 19:58:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Brachyspirales.f__Brachyspiraceae.g__Brachyspira
## 2023-03-15 19:58:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Gulosibacter
## 2023-03-15 19:58:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Fodinicurvata
## 2023-03-15 19:58:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Paenirhodobacter
## 2023-03-15 19:58:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.g__Thermorudis
## 2023-03-15 19:58:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfobulbus
## 2023-03-15 19:58:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Citromicrobium
## 2023-03-15 19:58:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Wenxinia
## 2023-03-15 19:58:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Aliterella
## 2023-03-15 19:58:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Planktomarina
## 2023-03-15 19:58:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Henriciella
## 2023-03-15 19:58:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Ferriphaselus
## 2023-03-15 19:58:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Kozakia
## 2023-03-15 19:58:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Belnapia
## 2023-03-15 19:58:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Haemophilus
## 2023-03-15 19:58:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Photobacterium
## 2023-03-15 19:58:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Astroviridae.g__Mamastrovirus
## 2023-03-15 19:58:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Hymenobacter
## 2023-03-15 19:58:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Orbales.f__Orbaceae.g__Candidatus_Schmidhempelia
## 2023-03-15 19:58:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Silvibacterium
## 2023-03-15 19:58:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Sporolactobacillaceae.g__Tuberibacillus
## 2023-03-15 19:58:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Ornatilinea
## 2023-03-15 19:58:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Aminobacterium
## 2023-03-15 19:58:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.g__Candidatus_Azobacteroides
## 2023-03-15 19:58:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Acidobacteria.c__Solibacteres.o__Solibacterales.f__Solibacteraceae.g__Candidatus_Solibacter
## 2023-03-15 19:58:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Knoellia
## 2023-03-15 19:58:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Methyloferula
## 2023-03-15 19:58:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Ferrimicrobium
## 2023-03-15 19:58:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Desulfurispora
## 2023-03-15 19:58:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Microbacterium
## 2023-03-15 19:58:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Actinobaculum
## 2023-03-15 19:58:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Marinovum
## 2023-03-15 19:58:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cardiobacteriales.f__Cardiobacteriaceae.g__Dichelobacter
## 2023-03-15 19:58:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobiaceae.g__Verrucomicrobium
## 2023-03-15 19:58:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Hyphomicrobium
## 2023-03-15 19:58:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Thermomonas
## 2023-03-15 19:58:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Microscilla
## 2023-03-15 19:58:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylobacteriaceae.g__Meganema
## 2023-03-15 19:58:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Commensalibacter
## 2023-03-15 19:58:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Roseivirga
## 2023-03-15 19:58:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.g__Lawsonella
## 2023-03-15 19:58:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Johnsonella
## 2023-03-15 19:58:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Enorma
## 2023-03-15 19:58:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Vitellibacter
## 2023-03-15 19:58:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Oceanibaculum
## 2023-03-15 19:58:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Nesiotobacter
## 2023-03-15 19:58:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Cytophaga
## 2023-03-15 19:58:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bradyrhizobiaceae.g__Rhodopseudomonas
## 2023-03-15 19:58:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Lentimicrobiaceae.g__Lentimicrobium
## 2023-03-15 19:58:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Entomoplasmatales.f__Entomoplasmataceae.g__Entomoplasma
## 2023-03-15 19:58:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Leifsonia
## 2023-03-15 19:58:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Arcticibacter
## 2023-03-15 19:58:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methermicoccaceae.g__Methermicoccus
## 2023-03-15 19:58:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Rhodospirillum
## 2023-03-15 19:58:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Methylocella
## 2023-03-15 19:58:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Roseburia
## 2023-03-15 19:58:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Lutibaculum
## 2023-03-15 19:58:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Anaerolinea
## 2023-03-15 19:58:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Arcanobacterium
## 2023-03-15 19:58:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Salinarchaeum
## 2023-03-15 19:58:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophaceae.g__Desulfobacca
## 2023-03-15 19:58:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Hirschia
## 2023-03-15 19:58:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Puniceicoccales.f__Puniceicoccaceae.g__Coraliomargarita
## 2023-03-15 19:58:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Desulfurobacteriales.f__Desulfurobacteriaceae.g__Desulfurobacterium
## 2023-03-15 19:58:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Oscillospiraceae.g__Oscillibacter
## 2023-03-15 19:58:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.o__Methylacidiphilales.f__Methylacidiphilaceae.g__Methylacidiphilum
## 2023-03-15 19:58:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Paucibacter
## 2023-03-15 19:58:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Marinilabilia
## 2023-03-15 19:58:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhizobiaceae.g__Agrobacterium
## 2023-03-15 19:58:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Spirosoma
## 2023-03-15 19:58:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Thermoactinomycetaceae.g__Thermoactinomyces
## 2023-03-15 19:58:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Weeksella
## 2023-03-15 19:58:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Magnetospira
## 2023-03-15 19:58:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Flavonifractor
## 2023-03-15 19:58:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Muricauda
## 2023-03-15 19:58:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Arenibacter
## 2023-03-15 19:58:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Trichormus
## 2023-03-15 19:58:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Bellilinea
## 2023-03-15 19:58:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Glycomycetales.f__Glycomycetaceae.g__Glycomyces
## 2023-03-15 19:58:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Kinetoplastibacterium
## 2023-03-15 19:58:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Nakamurellales.f__Nakamurellaceae.g__Nakamurella
## 2023-03-15 19:58:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Phaeospirillum
## 2023-03-15 19:58:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Acidihalobacter
## 2023-03-15 19:58:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Rhodopirellula
## 2023-03-15 19:58:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Sulfuricellales.f__Sulfuricellaceae.g__Sulfuricella
## 2023-03-15 19:58:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Caldicoprobacteraceae.g__Caldicoprobacter
## 2023-03-15 19:58:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Neptunomonas
## 2023-03-15 19:58:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Orbales.f__Orbaceae.g__Frischella
## 2023-03-15 19:58:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Gimesia
## 2023-03-15 19:58:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Kineosporiales.f__Kineosporiaceae.g__Angustibacter
## 2023-03-15 19:58:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Paenibacillus
## 2023-03-15 19:58:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Haematospirillum
## 2023-03-15 19:58:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Aerococcaceae.g__Facklamia
## 2023-03-15 19:58:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Mitsuokella
## 2023-03-15 19:58:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Rudaea
## 2023-03-15 19:58:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Xenorhabdus
## 2023-03-15 19:58:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Curvibacter
## 2023-03-15 19:58:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Nesterenkonia
## 2023-03-15 19:58:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Saccharomonospora
## 2023-03-15 19:58:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Skermanella
## 2023-03-15 19:58:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Ectothiorhodospira
## 2023-03-15 19:58:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Ehrlichia
## 2023-03-15 19:58:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulforegula
## 2023-03-15 19:58:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Polynucleobacter
## 2023-03-15 19:58:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Defluviimonas
## 2023-03-15 19:58:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Micrococcus
## 2023-03-15 19:58:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Mardivirus
## 2023-03-15 19:58:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Maricaulis
## 2023-03-15 19:58:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sneathiellales.f__Sneathiellaceae.g__Sneathiella
## 2023-03-15 19:58:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Hamadaea
## 2023-03-15 19:58:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobia_subdivision_3.g__Pedosphaera
## 2023-03-15 19:58:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Kosakonia
## 2023-03-15 19:58:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Acetohalobium
## 2023-03-15 19:58:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Gordonibacter
## 2023-03-15 19:58:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ruegeria
## 2023-03-15 19:58:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.o__Sphaerobacterales.f__Sphaerobacteraceae.g__Sphaerobacter
## 2023-03-15 19:58:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Frankiales.f__Sporichthyaceae.g__Sporichthya
## 2023-03-15 19:58:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Pirellula
## 2023-03-15 19:58:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Microtetraspora
## 2023-03-15 19:58:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Clostridioides
## 2023-03-15 19:58:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Rhizobacter
## 2023-03-15 19:58:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Segetibacter
## 2023-03-15 19:58:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Marivirga
## 2023-03-15 19:58:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Thermotogaceae.g__Thermotoga
## 2023-03-15 19:58:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Jiangellales.f__Jiangellaceae.g__Jiangella
## 2023-03-15 19:58:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Elusimicrobia.c__Endomicrobia.o__Endomicrobiales.f__Endomicrobiaceae.g__Endomicrobium
## 2023-03-15 19:58:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhizobiaceae.g__Neorhizobium
## 2023-03-15 19:58:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halorubrum
## 2023-03-15 19:58:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Kiloniellales.f__Kiloniellaceae.g__Kiloniella
## 2023-03-15 19:58:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Lactobacillaceae.g__Lactobacillus
## 2023-03-15 19:58:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Haliscomenobacter
## 2023-03-15 19:58:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Oxalobacteraceae.g__Herbaspirillum
## 2023-03-15 19:58:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Thiorhodospira
## 2023-03-15 19:58:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Halocynthiibacter
## 2023-03-15 19:58:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Candidatus_Korarchaeota.g__Candidatus_Korarchaeum
## 2023-03-15 19:58:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Alcanivoracaceae.g__Alcanivorax
## 2023-03-15 19:58:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Rubrivivax
## 2023-03-15 19:58:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Luteimonas
## 2023-03-15 19:58:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Paludibacter
## 2023-03-15 19:58:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Phycodnaviridae.g__Phaeovirus
## 2023-03-15 19:58:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.g__Tropheryma
## 2023-03-15 19:58:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Solibacillus
## 2023-03-15 19:58:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Leptotrichiaceae.g__Sebaldella
## 2023-03-15 19:58:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Plantibacter
## 2023-03-15 19:58:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Desulfuromonadaceae.g__Pelobacter
## 2023-03-15 19:58:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Shigella
## 2023-03-15 19:58:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Pasteurella
## 2023-03-15 19:58:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Hydrogenivirga
## 2023-03-15 19:58:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Planctomyces
## 2023-03-15 19:58:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Maribius
## 2023-03-15 19:58:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Sediminibacterium
## 2023-03-15 19:58:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Candidatus_Soleaferrea
## 2023-03-15 19:58:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Vulgatibacteraceae.g__Vulgatibacter
## 2023-03-15 19:58:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Planomonospora
## 2023-03-15 19:58:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Rhodoluna
## 2023-03-15 19:58:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Alteromonas
## 2023-03-15 19:58:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Robinsoniella
## 2023-03-15 19:58:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pluralibacter
## 2023-03-15 19:58:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Pseudonocardia
## 2023-03-15 19:58:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Microbispora
## 2023-03-15 19:58:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Catabacteriaceae.g__Catabacter
## 2023-03-15 19:58:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Dyadobacter
## 2023-03-15 19:58:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Lyngbya
## 2023-03-15 19:58:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Flexithrix
## 2023-03-15 19:58:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Polyomaviridae.g__Polyomavirus
## 2023-03-15 19:58:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Agreia
## 2023-03-15 19:58:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Odoribacteraceae.g__Odoribacter
## 2023-03-15 19:58:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Gemmatimonadetes.c__Gemmatimonadetes.o__Gemmatimonadales.f__Gemmatimonadaceae.g__Gemmatirosa
## 2023-03-15 19:58:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Waikavirus
## 2023-03-15 19:58:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zhouia
## 2023-03-15 19:58:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Circoviridae.g__Circovirus
## 2023-03-15 19:58:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Erysipelatoclostridium
## 2023-03-15 19:58:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Rivulariaceae.g__Calothrix
## 2023-03-15 19:58:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Symbiobacteriaceae.g__Symbiobacterium
## 2023-03-15 19:58:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Candidatus_Arthromitus
## 2023-03-15 19:58:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Chelatococcus
## 2023-03-15 19:58:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Catenulisporales.f__Actinospicaceae.g__Actinospica
## 2023-03-15 19:58:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Pseudomonadaceae.g__Oblitimonas
## 2023-03-15 19:58:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Mangrovimonas
## 2023-03-15 19:58:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Succinivibrionaceae.g__Succinivibrio
## 2023-03-15 19:58:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Phycodnaviridae.g__Prasinovirus
## 2023-03-15 19:58:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Faecalicoccus
## 2023-03-15 19:58:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Herpesvirales.f__Alloherpesviridae.g__Ictalurivirus
## 2023-03-15 19:58:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Geofilum
## 2023-03-15 19:58:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Pseudobacteroides
## 2023-03-15 19:58:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Paludibacterium
## 2023-03-15 19:58:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Senegalimassilia
## 2023-03-15 19:58:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Methylophaga
## 2023-03-15 19:58:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Petrotogales.g__Defluviitoga
## 2023-03-15 19:58:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zobellia
## 2023-03-15 19:58:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Arsenicicoccus
## 2023-03-15 19:58:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Carnimonas
## 2023-03-15 19:58:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Gracilibacillus
## 2023-03-15 19:58:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Papillomaviridae.g__Omegapapillomavirus
## 2023-03-15 19:58:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Dysgonomonas
## 2023-03-15 19:58:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thalassobius
## 2023-03-15 19:58:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Jonesiaceae.g__Jonesia
## 2023-03-15 19:58:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Deinococcales.f__Trueperaceae.g__Truepera
## 2023-03-15 19:58:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Finegoldia
## 2023-03-15 19:58:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Oceanibulbus
## 2023-03-15 19:58:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Aliivibrio
## 2023-03-15 19:58:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Oceanimonas
## 2023-03-15 19:58:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Falsirhodobacter
## 2023-03-15 19:58:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Staphylococcaceae.g__Macrococcus
## 2023-03-15 19:58:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Fervidobacteriaceae.g__Thermosipho
## 2023-03-15 19:58:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.g__Anaerosporomusa
## 2023-03-15 19:58:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Paracoccus
## 2023-03-15 19:58:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Persicobacteraceae.g__Persicobacter
## 2023-03-15 19:58:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanothermaceae.g__Methanothermus
## 2023-03-15 19:58:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Rhodobacter
## 2023-03-15 19:58:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Formosa
## 2023-03-15 19:58:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Xanthobacter
## 2023-03-15 19:58:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Oscillatoria
## 2023-03-15 19:58:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanobacteriaceae.g__Methanobrevibacter
## 2023-03-15 19:58:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Porticoccaceae.g__Porticoccus
## 2023-03-15 19:58:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Rufibacter
## 2023-03-15 19:58:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Amantichitinum
## 2023-03-15 19:58:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Thermobrachium
## 2023-03-15 19:58:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiales_Family_XIII._Incertae_Sedis.g__Anaerovorax
## 2023-03-15 19:58:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Criblamydiaceae.g__Criblamydia
## 2023-03-15 19:58:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Lutibacter
## 2023-03-15 19:58:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Neisseria
## 2023-03-15 19:58:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Salimicrobium
## 2023-03-15 19:58:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Phycodnaviridae.g__Prymnesiovirus
## 2023-03-15 19:58:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Anaerobaculum
## 2023-03-15 19:58:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Bifidobacteriales.f__Bifidobacteriaceae.g__Scardovia
## 2023-03-15 19:58:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Pontibacillus
## 2023-03-15 19:58:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Orenia
## 2023-03-15 19:58:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseobacter
## 2023-03-15 19:58:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Inquilinus
## 2023-03-15 19:58:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Methyloversatilis
## 2023-03-15 19:58:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Labrenzia
## 2023-03-15 19:58:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Catonella
## 2023-03-15 19:58:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Amorphus
## 2023-03-15 19:58:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Virgaviridae.g__Tobamovirus
## 2023-03-15 19:58:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfobacterium
## 2023-03-15 19:58:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Slackia
## 2023-03-15 19:58:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Moraxellaceae.g__Perlucidibaca
## 2023-03-15 19:58:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Propionibacteriaceae.g__Granulicoccus
## 2023-03-15 19:58:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Celeribacter
## 2023-03-15 19:58:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.g__Higrevirus
## 2023-03-15 19:58:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prevotellaceae.g__Prevotella
## 2023-03-15 19:58:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Adhaeribacter
## 2023-03-15 19:58:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Cycloclasticus
## 2023-03-15 19:58:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Muribacter
## 2023-03-15 19:58:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Sanguibacteraceae.g__Sanguibacter
## 2023-03-15 19:58:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Oribacterium
## 2023-03-15 19:58:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Retroviridae.g__Alpharetrovirus
## 2023-03-15 19:58:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Tymovirales.f__Tymoviridae.g__Tymovirus
## 2023-03-15 19:58:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Sporomusaceae.g__Anaeromusa
## 2023-03-15 19:58:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halapricum
## 2023-03-15 19:58:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Atopobiaceae.g__Atopobium
## 2023-03-15 19:58:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Mizugakiibacter
## 2023-03-15 19:58:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Carnobacteriaceae.g__Jeotgalibaca
## 2023-03-15 19:58:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Kineosphaera
## 2023-03-15 19:58:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Robiginitomaculum
## 2023-03-15 19:58:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Spiribacter
## 2023-03-15 19:58:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Staphylococcaceae.g__Jeotgalicoccus
## 2023-03-15 19:58:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halorhabdus
## 2023-03-15 19:58:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Zetaproteobacteria.o__Mariprofundales.f__Mariprofundaceae.g__Mariprofundus
## 2023-03-15 19:58:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Dicipivirus
## 2023-03-15 19:58:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Acidobacteria.c__Holophagae.o__Holophagales.f__Holophagaceae.g__Geothrix
## 2023-03-15 19:58:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Nonomuraea
## 2023-03-15 19:58:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Anaplasma
## 2023-03-15 19:58:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Geminicoccus
## 2023-03-15 19:58:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Dicistroviridae.g__Aparavirus
## 2023-03-15 19:58:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermabacteraceae.g__Dermabacter
## 2023-03-15 19:58:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Tamlana
## 2023-03-15 19:58:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Thermodesulfobacterium
## 2023-03-15 19:58:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.g__Candidatus_Hepatobacter
## 2023-03-15 19:58:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Paraglaciecola
## 2023-03-15 19:58:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Aurantimonadaceae.g__Aurantimonas
## 2023-03-15 19:58:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Pararhodospirillum
## 2023-03-15 19:58:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thioflavicoccus
## 2023-03-15 19:58:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Dictyoglomi.c__Dictyoglomia.o__Dictyoglomales.f__Dictyoglomaceae.g__Dictyoglomus
## 2023-03-15 19:58:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Salivirus
## 2023-03-15 19:58:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Oxalobacteraceae.g__Collimonas
## 2023-03-15 19:58:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Eikenella
## 2023-03-15 19:58:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Planktothrix
## 2023-03-15 19:58:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Sciscionella
## 2023-03-15 19:58:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiocapsa
## 2023-03-15 19:58:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Gillisia
## 2023-03-15 19:58:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Actinoplanes
## 2023-03-15 19:58:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophobacteraceae.g__Syntrophobacter
## 2023-03-15 19:58:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Paeniclostridium
## 2023-03-15 19:58:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Herpesvirales.f__Alloherpesviridae.g__Batrachovirus
## 2023-03-15 19:58:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Rubellimicrobium
## 2023-03-15 19:58:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Halothiobacillaceae.g__Halothiobacillus
## 2023-03-15 19:58:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Opitutales.f__Opitutaceae.g__Opitutus
## 2023-03-15 19:58:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Pleomorphomonas
## 2023-03-15 19:58:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Paracaedibacteraceae.g__Candidatus_Paracaedibacter
## 2023-03-15 19:58:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Loktanella
## 2023-03-15 19:58:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Fibrella
## 2023-03-15 19:58:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Vagococcus
## 2023-03-15 19:58:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Cystobacteraceae.g__Cystobacter
## 2023-03-15 19:58:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Bafinivirus
## 2023-03-15 19:58:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Mesorhizobium
## 2023-03-15 19:58:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Campylobacteraceae.g__Arcobacter
## 2023-03-15 19:58:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Veillonellales.f__Veillonellaceae.g__Veillonella
## 2023-03-15 19:58:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Parvimonas
## 2023-03-15 19:58:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Pseudoclavibacter
## 2023-03-15 19:58:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Tatumella
## 2023-03-15 19:58:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natronococcus
## 2023-03-15 19:58:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Alcaligenes
## 2023-03-15 19:58:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Streptococcaceae.g__Streptococcus
## 2023-03-15 19:58:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Kofleriaceae.g__Haliangium
## 2023-03-15 19:58:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thioclava
## 2023-03-15 19:58:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Xylophilus
## 2023-03-15 19:58:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Aerococcaceae.g__Aerococcus
## 2023-03-15 19:58:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Sodalis
## 2023-03-15 19:58:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Phycicoccus
## 2023-03-15 19:58:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Thermales.f__Thermaceae.g__Meiothermus
## 2023-03-15 19:58:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Lachnoanaerobaculum
## 2023-03-15 19:58:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Buttiauxella
## 2023-03-15 19:58:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Lampropedia
## 2023-03-15 19:58:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Moritellaceae.g__Moritella
## 2023-03-15 19:58:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Oxalobacteraceae.g__Herminiimonas
## 2023-03-15 19:58:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Nitrospirae.c__Nitrospira.o__Nitrospirales.f__Nitrospiraceae.g__Candidatus_Magnetobacterium
## 2023-03-15 19:58:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Cryptobacterium
## 2023-03-15 19:58:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Hylemonella
## 2023-03-15 19:58:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Cylindrospermum
## 2023-03-15 19:58:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Cellulosilyticum
## 2023-03-15 19:58:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Shewanellaceae.g__Shewanella
## 2023-03-15 19:58:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Nitratireductor
## 2023-03-15 19:58:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Candidatus_Cloacimonetes.g__Candidatus_Cloacimonas
## 2023-03-15 19:58:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylocaldum
## 2023-03-15 19:58:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prolixibacteraceae.g__Sunxiuqinia
## 2023-03-15 19:58:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Salinisphaerales.f__Salinisphaeraceae.g__Salinisphaera
## 2023-03-15 19:58:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Acidobacteria.c__Blastocatellia.g__Chloracidobacterium
## 2023-03-15 19:58:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Aquitalea
## 2023-03-15 19:58:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Rubritaleaceae.g__Rubritalea
## 2023-03-15 19:58:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Azospirillum
## 2023-03-15 19:58:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Saccharibacillus
## 2023-03-15 19:58:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Methanomassiliicoccales.f__Methanomassiliicoccaceae.g__Methanomassiliicoccus
## 2023-03-15 19:58:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Blastochloris
## 2023-03-15 19:58:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Asanoa
## 2023-03-15 19:58:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatibacillum
## 2023-03-15 19:58:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Alcanivoracaceae.g__Kangiella
## 2023-03-15 19:58:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Caldiserica.c__Caldisericia.o__Caldisericales.f__Caldisericaceae.g__Caldisericum
## 2023-03-15 19:58:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Advenella
## 2023-03-15 19:58:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Cobetia
## 2023-03-15 19:58:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Beutenbergiaceae.g__Beutenbergia
## 2023-03-15 19:58:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Cellulosimicrobium
## 2023-03-15 19:58:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermacoccaceae.g__Luteipulveratus
## 2023-03-15 19:58:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Phycodnaviridae.g__Chlorovirus
## 2023-03-15 19:58:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Pandoraea
## 2023-03-15 19:58:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Haematobacter
## 2023-03-15 19:58:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Thalassobacillus
## 2023-03-15 19:58:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Dickeya
## 2023-03-15 19:58:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Veillonellales.f__Veillonellaceae.g__Dialister
## 2023-03-15 19:58:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylosarcina
## 2023-03-15 19:58:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfurellales.f__Desulfurellaceae.g__Desulfurella
## 2023-03-15 19:58:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Thermobacillus
## 2023-03-15 19:58:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Pontibacter
## 2023-03-15 19:58:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Demequinaceae.g__Lysinimicrobium
## 2023-03-15 19:59:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Avibacterium
## 2023-03-15 19:59:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfobacter
## 2023-03-15 19:59:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Borreliaceae.g__Borrelia
## 2023-03-15 19:59:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Sandaracinaceae.g__Sandaracinus
## 2023-03-15 19:59:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Acidobacteria.c__Blastocatellia.g__Pyrinomonas
## 2023-03-15 19:59:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Hamiltonella
## 2023-03-15 19:59:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Heliobacteriaceae.g__Heliobacterium
## 2023-03-15 19:59:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bradyrhizobiaceae.g__Bosea
## 2023-03-15 19:59:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Flammeovirga
## 2023-03-15 19:59:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Nocardiopsaceae.g__Thermobifida
## 2023-03-15 19:59:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Aneurinibacillus
## 2023-03-15 19:59:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Pseudopedobacter
## 2023-03-15 19:59:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Lechevalieria
## 2023-03-15 19:59:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfomicrobiaceae.g__Desulfomicrobium
## 2023-03-15 19:59:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Dehalococcoidia.o__Dehalococcoidales.f__Dehalococcoidaceae.g__Dehalococcoides
## 2023-03-15 19:59:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Edwardsiella
## 2023-03-15 19:59:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Sinomonas
## 2023-03-15 19:59:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Poxviridae.g__Betaentomopoxvirus
## 2023-03-15 19:59:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Acidaminococcales.f__Acidaminococcaceae.g__Phascolarctobacterium
## 2023-03-15 19:59:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Syntrophomonadaceae.g__Syntrophomonas
## 2023-03-15 19:59:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Chlorobium
## 2023-03-15 19:59:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Varibaculum
## 2023-03-15 19:59:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Burkholderia
## 2023-03-15 19:59:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Thermosulfurimonas
## 2023-03-15 19:59:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Sulfolobales.f__Sulfolobaceae.g__Sulfolobus
## 2023-03-15 19:59:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiorhodovibrio
## 2023-03-15 19:59:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Thermomonosporaceae.g__Spirillospora
## 2023-03-15 19:59:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Desulfosporosinus
## 2023-03-15 19:59:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Providencia
## 2023-03-15 19:59:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Carnobacteriaceae.g__Allofustis
## 2023-03-15 19:59:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Stenotrophomonas
## 2023-03-15 19:59:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Frigoribacterium
## 2023-03-15 19:59:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Glycomycetales.f__Glycomycetaceae.g__Stackebrandtia
## 2023-03-15 19:59:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Ornithinimicrobium
## 2023-03-15 19:59:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Wenzhouxiangellaceae.g__Wenzhouxiangella
## 2023-03-15 19:59:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Jonquetella
## 2023-03-15 19:59:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Rhodoplanes
## 2023-03-15 19:59:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Acidaminococcales.f__Acidaminococcaceae.g__Succinispira
## 2023-03-15 19:59:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Promicromonospora
## 2023-03-15 19:59:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Thermacetogenium
maaslin_without_group_putative <- function_Maaslin2(df_ACC_Voom_SNM, "Putative_combined", "Temp/without_group_putative")
## [1] "Warning: Deleting existing log file: Temp/without_group_putative/maaslin2.log"
## 2023-03-15 19:59:06 INFO::Writing function arguments to log file
## 2023-03-15 19:59:06 INFO::Verifying options selected are valid
## 2023-03-15 19:59:06 INFO::Determining format of input files
## 2023-03-15 19:59:06 INFO::Input format is data samples as rows and metadata samples as rows
## 2023-03-15 19:59:06 INFO::Formula for random effects: expr ~ (1 | SEX) + (1 | Ethnicity_Race) + (1 | AGE) + (1 | Neoplasm_Status) + (1 | Clinical_Status_3_Mo_Post.Op) + (1 | Surgical_margin) + (1 | ATYPICAL_MITOTIC_FIGURES)
## 2023-03-15 19:59:06 INFO::Formula for fixed effects: expr ~  Putative_combined
## 2023-03-15 19:59:06 INFO::Filter data based on min abundance and min prevalence
## 2023-03-15 19:59:06 INFO::Total samples in data: 77
## 2023-03-15 19:59:06 INFO::Min samples required with min abundance for a feature not to be filtered: 0.000000
## 2023-03-15 19:59:06 INFO::Total filtered features: 80
## 2023-03-15 19:59:06 INFO::Filtered feature names from abundance and prevalence filtering: k__Viruses.f__Baculoviridae.g__Deltabaculovirus, k__Viruses.o__Caudovirales.f__Myoviridae.g__I3likevirus, k__Viruses.f__Anelloviridae.g__Gammatorquevirus, k__Viruses.f__Phycodnaviridae.g__Coccolithovirus, k__Viruses.f__Poxviridae.g__Capripoxvirus, k__Viruses.o__Mononegavirales.f__Nyamiviridae.g__Nyavirus, k__Viruses.f__Chrysoviridae.g__Chrysovirus, k__Viruses.g__Emaravirus, k__Viruses.f__Poxviridae.g__Yatapoxvirus, k__Viruses.f__Poxviridae.g__Orthopoxvirus, k__Viruses.o__Caudovirales.f__Siphoviridae.g__L5likevirus, k__Viruses.f__Hytrosaviridae.g__Muscavirus, k__Viruses.f__Closteroviridae.g__Crinivirus, k__Viruses.f__Iridoviridae.g__Iridovirus, k__Viruses.o__Caudovirales.f__Myoviridae.g__Cp220likevirus, k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Halobiforma, k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Fervidicella, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Wigglesworthia, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Cedecea, k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Cystobacteraceae.g__Hyalangium, k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Imtechella, k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Fibrisoma, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Nitrococcus, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Coxiellaceae.g__Diplorickettsia, k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Rikenellaceae.g__Rikenella, k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Caminibacter, k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Belliella, k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinosynnema, k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natronobacterium, k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Bifidobacteriales.f__Bifidobacteriaceae.g__Alloscardovia, k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Fusobacteriaceae.g__Cetobacterium, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Pelomonas, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Hahellaceae.g__Endozoicomonas, k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanolacinia, k__Archaea.p__Euryarchaeota.c__Methanococci.o__Methanococcales.f__Methanocaldococcaceae.g__Methanotorris, k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudophaeobacter, k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Hydrogenothermaceae.g__Persephonella, k__Archaea.p__Euryarchaeota.c__Methanococci.o__Methanococcales.f__Methanococcaceae.g__Methanothermococcus, k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pelagibaca, k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Raphidiopsis, k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Flaviramulus, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Blochmannia, k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Gorillibacterium, k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Methanomassiliicoccales.f__Methanomassiliicoccaceae.g__Candidatus_Methanoplasma, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Nevskia, k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Bhargavaea, k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halomicrobium, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Oleispira, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Brenneria, k__Bacteria.p__Chrysiogenetes.c__Chrysiogenetes.o__Chrysiogenales.f__Chrysiogenaceae.g__Chrysiogenes, k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Gottschalkia, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomicrobium, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Candidatus_Glomeribacter, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Moellerella, k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Microchaetaceae.g__Microchaete, k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Oxobacter, k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Aphanizomenon, k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Lebetimonas, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Morococcus, k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Ulvibacter, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Marinagarivorans, k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Solitalea, k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Thermoplasmatales.f__Ferroplasmaceae.g__Ferroplasma, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Gilvimarinus, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Dechloromonas, k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Gloeocapsa, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Azovibrio, k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Sulfuricurvum, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Leminorella, k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Geobacteraceae.g__Geoalkalibacter, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Sphaerotilus, k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Psychrobacillus, k__Bacteria.p__Thermotogae.c__Thermotogae.o__Petrotogales.g__Petrotoga, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Halieaceae.g__Haliea, k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Odoribacteraceae.g__Butyricimonas, k__Bacteria.p__Chloroflexi.c__Ardenticatenia.o__Ardenticatenales.f__Ardenticatenaceae.g__Ardenticatena, k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Beijerinckia, k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Aphanocapsa, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Thauera, k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Paucisalibacillus
## 2023-03-15 19:59:06 INFO::Total filtered features with variance filtering: 0
## 2023-03-15 19:59:06 INFO::Filtered feature names from variance filtering:
## 2023-03-15 19:59:06 INFO::Running selected normalization method: NONE
## 2023-03-15 19:59:06 INFO::Applying z-score to standardize continuous metadata
## 2023-03-15 19:59:06 INFO::Running selected transform method: NONE
## 2023-03-15 19:59:06 INFO::Running selected analysis method: LM
## 2023-03-15 19:59:06 INFO::Creating cluster of 6 R processes
## 2023-03-15 19:59:39 INFO::Counting total values for each feature
## 2023-03-15 19:59:39 WARNING::Deleting existing residuals file: Temp/without_group_putative/residuals.rds
## 2023-03-15 19:59:39 INFO::Writing residuals to file Temp/without_group_putative/residuals.rds
## 2023-03-15 19:59:39 WARNING::Deleting existing fitted file: Temp/without_group_putative/fitted.rds
## 2023-03-15 19:59:39 INFO::Writing fitted values to file Temp/without_group_putative/fitted.rds
## 2023-03-15 19:59:39 WARNING::Deleting existing ranef file: Temp/without_group_putative/ranef.rds
## 2023-03-15 19:59:39 INFO::Writing extracted random effects to file Temp/without_group_putative/ranef.rds
## 2023-03-15 19:59:39 INFO::Writing all results to file (ordered by increasing q-values): Temp/without_group_putative/all_results.tsv
## 2023-03-15 19:59:39 INFO::Writing the significant results (those which are less than or equal to the threshold of 0.250000 ) to file (ordered by increasing q-values): Temp/without_group_putative/significant_results.tsv
## 2023-03-15 19:59:39 INFO::Writing heatmap of significant results to file: Temp/without_group_putative/heatmap.pdf
## Warning in xtfrm.data.frame(x): cannot xtfrm data frames
## [1] "There is not enough metadata in the associations to create a heatmap plot. Please review the associations in text output file."
## 2023-03-15 19:59:39 INFO::Writing association plots (one for each significant association) to output folder: Temp/without_group_putative
## 2023-03-15 19:59:39 INFO::Plotting associations from most to least significant, grouped by metadata
## 2023-03-15 19:59:39 INFO::Plotting data for metadata number 1, Putative_combined
## 2023-03-15 19:59:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Propionispira
## 2023-03-15 19:59:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophaceae.g__Syntrophus
## 2023-03-15 19:59:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Deefgea
## 2023-03-15 19:59:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Sfi1unalikevirus
## 2023-03-15 19:59:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__C2likevirus
## 2023-03-15 19:59:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Poxviridae.g__Parapoxvirus
## 2023-03-15 19:59:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Bicaudaviridae.g__Bicaudavirus
## 2023-03-15 19:59:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Circoviridae.g__Gyrovirus
## 2023-03-15 19:59:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Caulimoviridae.g__Badnavirus
## 2023-03-15 19:59:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Papillomaviridae.g__Betapapillomavirus
## 2023-03-15 19:59:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Bcep22likevirus
## 2023-03-15 19:59:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Ligamenvirales.f__Lipothrixviridae.g__Deltalipothrixvirus
## 2023-03-15 19:59:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Poxviridae.g__Cervidpoxvirus
## 2023-03-15 19:59:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__T5likevirus
## 2023-03-15 19:59:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Papillomaviridae.g__Mupapillomavirus
## 2023-03-15 19:59:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Lambdalikevirus
## 2023-03-15 19:59:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Papillomaviridae.g__Phipapillomavirus
## 2023-03-15 19:59:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Anelloviridae.g__Alphatorquevirus
## 2023-03-15 19:59:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.g__Pithovirus
## 2023-03-15 19:59:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Barnyardlikevirus
## 2023-03-15 19:59:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Reoviridae.g__Cypovirus
## 2023-03-15 19:59:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Iltovirus
## 2023-03-15 19:59:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Closteroviridae.g__Closterovirus
## 2023-03-15 19:59:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Viunalikevirus
## 2023-03-15 19:59:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Phicbklikevirus
## 2023-03-15 19:59:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Fuselloviridae.g__Alphafusellovirus
## 2023-03-15 19:59:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Retroviridae.g__Lentivirus
## 2023-03-15 19:59:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Luteoviridae.g__Polerovirus
## 2023-03-15 19:59:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Andromedalikevirus
## 2023-03-15 19:59:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Iridoviridae.g__Lymphocystivirus
## 2023-03-15 19:59:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Poxviridae.g__Avipoxvirus
## 2023-03-15 19:59:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Cheravirus
## 2023-03-15 19:59:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Ligamenvirales.f__Rudiviridae.g__Rudivirus
## 2023-03-15 19:59:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Closteroviridae.g__Ampelovirus
## 2023-03-15 19:59:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Papillomaviridae.g__Gammapapillomavirus
## 2023-03-15 19:59:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Bunyaviridae.g__Hantavirus
## 2023-03-15 19:59:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Tymovirales.f__Betaflexiviridae.g__Foveavirus
## 2023-03-15 19:59:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Skunalikevirus
## 2023-03-15 19:59:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Phikzlikevirus
## 2023-03-15 19:59:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Orthomyxoviridae.g__Influenzavirus_C
## 2023-03-15 19:59:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phi29likevirus
## 2023-03-15 19:59:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Caulimoviridae.g__Cavemovirus
## 2023-03-15 19:59:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Anelloviridae.g__Betatorquevirus
## 2023-03-15 19:59:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Caulimoviridae.g__Caulimovirus
## 2023-03-15 19:59:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Pbunalikevirus
## 2023-03-15 19:59:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Reoviridae.g__Phytoreovirus
## 2023-03-15 19:59:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Bromoviridae.g__Alfamovirus
## 2023-03-15 19:59:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Sp6likevirus
## 2023-03-15 19:59:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Sphaerolipoviridae.g__Gammasphaerolipovirus
## 2023-03-15 19:59:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Flaviviridae.g__Pegivirus
## 2023-03-15 19:59:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Mononegavirales.f__Rhabdoviridae.g__Vesiculovirus
## 2023-03-15 19:59:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Mononegavirales.f__Rhabdoviridae.g__Lyssavirus
## 2023-03-15 19:59:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Hepadnaviridae.g__Orthohepadnavirus
## 2023-03-15 19:59:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Tymovirales.f__Alphaflexiviridae.g__Allexivirus
## 2023-03-15 19:59:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Parvoviridae.g__Ambidensovirus
## 2023-03-15 19:59:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Comovirus
## 2023-03-15 19:59:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.g__Polemovirus
## 2023-03-15 19:59:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Leviviridae.g__Levivirus
## 2023-03-15 19:59:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phieco32likevirus
## 2023-03-15 19:59:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Reoviridae.g__Aquareovirus
## 2023-03-15 19:59:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Bromoviridae.g__Ilarvirus
## 2023-03-15 19:59:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Narnaviridae.g__Narnavirus
## 2023-03-15 19:59:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Totiviridae.g__Totivirus
## 2023-03-15 19:59:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Chilikevirus
## 2023-03-15 19:59:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Potyviridae.g__Tritimovirus
## 2023-03-15 19:59:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viroids.f__Pospiviroidae.g__Coleviroid
## 2023-03-15 19:59:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Papillomaviridae.g__Dyopipapillomavirus
## 2023-03-15 19:59:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.o__Haloplasmatales.f__Haloplasmataceae.g__Haloplasma
## 2023-03-15 19:59:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Siccibacter
## 2023-03-15 19:59:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Neosynechococcus
## 2023-03-15 19:59:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Dolichospermum
## 2023-03-15 19:59:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Altibacter
## 2023-03-15 19:59:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Methanomassiliicoccales.f__Methanomassiliicoccaceae.g__Candidatus_Methanomethylophilus
## 2023-03-15 19:59:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Nitritalea
## 2023-03-15 19:59:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Mangrovibacter
## 2023-03-15 19:59:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Thalassotalea
## 2023-03-15 19:59:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Pseudoramibacter
## 2023-03-15 19:59:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Reinekea
## 2023-03-15 19:59:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfospira
## 2023-03-15 19:59:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Arenitalea
## 2023-03-15 19:59:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Thermoactinomycetaceae.g__Shimazuella
## 2023-03-15 19:59:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Yokenella
## 2023-03-15 19:59:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Gaetbulibacter
## 2023-03-15 19:59:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Basilea
## 2023-03-15 19:59:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Alicyclobacillaceae.g__Effusibacillus
## 2023-03-15 19:59:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitinibacter
## 2023-03-15 19:59:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Myxosarcina
## 2023-03-15 19:59:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Gayadomonas
## 2023-03-15 19:59:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomarinum
## 2023-03-15 19:59:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Jeotgalibacillus
## 2023-03-15 19:59:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Zymobacter
## 2023-03-15 19:59:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Paeniglutamicibacter
## 2023-03-15 19:59:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halobellus
## 2023-03-15 19:59:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Archaeoglobi.o__Archaeoglobales.f__Archaeoglobaceae.g__Ferroglobus
## 2023-03-15 19:59:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Cyclobacterium
## 2023-03-15 19:59:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Olivibacter
## 2023-03-15 19:59:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Sideroxydans
## 2023-03-15 19:59:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Sediminibacillus
## 2023-03-15 19:59:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methanosarcinaceae.g__Methanohalobium
## 2023-03-15 19:59:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Thioalkalimicrobium
## 2023-03-15 19:59:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Saccharospirillum
## 2023-03-15 19:59:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Robiginitalea
## 2023-03-15 19:59:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Caldimicrobium
## 2023-03-15 19:59:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Actinopolymorpha
## 2023-03-15 19:59:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Candidatus_Phaeomarinobacter
## 2023-03-15 19:59:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Candidatus_Koribacter
## 2023-03-15 19:59:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermabacteraceae.g__Helcobacillus
## 2023-03-15 19:59:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Centipeda
## 2023-03-15 19:59:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Nocardiopsaceae.g__Allosalinactinospora
## 2023-03-15 19:59:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ponticoccus
## 2023-03-15 19:59:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halogranum
## 2023-03-15 19:59:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Nautilia
## 2023-03-15 19:59:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Obesumbacterium
## 2023-03-15 19:59:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Desulfurobacteriales.f__Desulfurobacteriaceae.g__Thermovibrio
## 2023-03-15 19:59:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Aliiroseovarius
## 2023-03-15 19:59:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.g__Thermosulfidibacter
## 2023-03-15 19:59:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Stigonematales.g__Mastigocladopsis
## 2023-03-15 19:59:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Thaumarchaeota.o__Nitrosopumilales.f__Nitrosopumilaceae.g__Candidatus_Nitrosoarchaeum
## 2023-03-15 19:59:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Mesoaciditogales.f__Mesoaciditogaceae.g__Mesoaciditoga
## 2023-03-15 19:59:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Wolinella
## 2023-03-15 19:59:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Thaumarchaeota.o__Nitrosopumilales.f__Nitrosopumilaceae.g__Nitrosopumilus
## 2023-03-15 19:59:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Marinococcus
## 2023-03-15 19:59:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfobacula
## 2023-03-15 19:59:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanoculleus
## 2023-03-15 19:59:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Spongiibacteraceae.g__Dasania
## 2023-03-15 19:59:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Thermincola
## 2023-03-15 19:59:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Shuttleworthia
## 2023-03-15 19:59:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylovorus
## 2023-03-15 19:59:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.o__Thermomicrobiales.f__Thermomicrobiaceae.g__Thermomicrobium
## 2023-03-15 19:59:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halogeometricum
## 2023-03-15 19:59:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Thermocrinis
## 2023-03-15 19:59:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanofollis
## 2023-03-15 19:59:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Mesonia
## 2023-03-15 19:59:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Basfia
## 2023-03-15 19:59:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Candidatus_Atelocyanobacterium
## 2023-03-15 19:59:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Thalassolituus
## 2023-03-15 19:59:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Allobaculum
## 2023-03-15 19:59:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Coriobacterium
## 2023-03-15 19:59:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Amphritea
## 2023-03-15 19:59:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Haloplanus
## 2023-03-15 19:59:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Flagellimonas
## 2023-03-15 19:59:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Thermoproteales.f__Thermoproteaceae.g__Vulcanisaeta
## 2023-03-15 19:59:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Spongiibacteraceae.g__Zhongshania
## 2023-03-15 19:59:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Bermanella
## 2023-03-15 19:59:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Afifella
## 2023-03-15 19:59:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Rummeliibacillus
## 2023-03-15 19:59:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfurivibrio
## 2023-03-15 19:59:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Salinibacillus
## 2023-03-15 19:59:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Pseudobutyrivibrio
## 2023-03-15 19:59:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Kosmotogales.f__Kosmotogaceae.g__Mesotoga
## 2023-03-15 19:59:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Paracaedibacteraceae.g__Candidatus_Odyssella
## 2023-03-15 19:59:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Holdemania
## 2023-03-15 19:59:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Balneatrix
## 2023-03-15 19:59:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Dielma
## 2023-03-15 19:59:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Terribacillus
## 2023-03-15 19:59:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Acidilobales.f__Acidilobaceae.g__Acidilobus
## 2023-03-15 19:59:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanoplanus
## 2023-03-15 19:59:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseibacterium
## 2023-03-15 19:59:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Lacimicrobium
## 2023-03-15 19:59:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Halostagnicola
## 2023-03-15 19:59:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Adlercreutzia
## 2023-03-15 19:59:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Legionellaceae.g__Tatlockia
## 2023-03-15 19:59:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Candidatus_Photodesmus
## 2023-03-15 19:59:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfonatronospira
## 2023-03-15 19:59:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Nereida
## 2023-03-15 19:59:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Cloacibacillus
## 2023-03-15 19:59:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Thaumarchaeota.g__Candidatus_Nitrosotenuis
## 2023-03-15 19:59:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Thermoproteales.f__Thermoproteaceae.g__Caldivirga
## 2023-03-15 19:59:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Subdoligranulum
## 2023-03-15 19:59:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Sfi21dtunalikevirus
## 2023-03-15 19:59:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanoregulaceae.g__Methanolinea
## 2023-03-15 19:59:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Tymovirales.f__Betaflexiviridae.g__Trichovirus
## 2023-03-15 19:59:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Virgaviridae.g__Pecluvirus
## 2023-03-15 19:59:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__P100virus
## 2023-03-15 19:59:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__N4likevirus
## 2023-03-15 19:59:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Natronomonas
## 2023-03-15 19:59:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.g__Hoyosella
## 2023-03-15 19:59:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halobacterium
## 2023-03-15 19:59:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanoregulaceae.g__Methanosphaerula
## 2023-03-15 19:59:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Halolactibacillus
## 2023-03-15 19:59:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Sellimonas
## 2023-03-15 19:59:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Lentzea
## 2023-03-15 19:59:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Alkalilimnicola
## 2023-03-15 19:59:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Halopiger
## 2023-03-15 19:59:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phikmvlikevirus
## 2023-03-15 19:59:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Prosthecochloris
## 2023-03-15 19:59:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Thalassomonas
## 2023-03-15 19:59:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Haloarcula
## 2023-03-15 19:59:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Gramella
## 2023-03-15 19:59:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Arhodomonas
## 2023-03-15 19:59:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halanaeroarchaeum
## 2023-03-15 19:59:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Puniceibacterium
## 2023-03-15 19:59:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Inoviridae.g__Inovirus
## 2023-03-15 19:59:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Salinimonas
## 2023-03-15 19:59:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Catenovulum
## 2023-03-15 19:59:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Sedimenticola
## 2023-03-15 20:00:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.g__Aciduliprofundum
## 2023-03-15 20:00:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Aromatoleum
## 2023-03-15 20:00:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Maritalea
## 2023-03-15 20:00:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halalkalicoccus
## 2023-03-15 20:00:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Pyrococcus
## 2023-03-15 20:00:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatirhabdium
## 2023-03-15 20:00:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Citreicella
## 2023-03-15 20:00:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Azonexus
## 2023-03-15 20:00:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Xylanimonas
## 2023-03-15 20:00:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Candidatus_Methylopumilus
## 2023-03-15 20:00:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natronorubrum
## 2023-03-15 20:00:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Nisaea
## 2023-03-15 20:00:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatiglans
## 2023-03-15 20:00:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Herpesvirales.f__Malacoherpesviridae.g__Ostreavirus
## 2023-03-15 20:00:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Nocardiopsaceae.g__Streptomonospora
## 2023-03-15 20:00:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Pyrodictiaceae.g__Pyrodictium
## 2023-03-15 20:00:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Coprobacter
## 2023-03-15 20:00:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.g__Bacilladnavirus
## 2023-03-15 20:00:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Marinospirillum
## 2023-03-15 20:00:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Microvirgula
## 2023-03-15 20:00:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.g__Methyloceanibacter
## 2023-03-15 20:00:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Aliihoeflea
## 2023-03-15 20:00:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prolixibacteraceae.g__Prolixibacter
## 2023-03-15 20:00:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Agarivorans
## 2023-03-15 20:00:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Youngiibacter
## 2023-03-15 20:00:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Rudanella
## 2023-03-15 20:00:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Rubidibacter
## 2023-03-15 20:00:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Cryomorphaceae.g__Owenweeksia
## 2023-03-15 20:00:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.g__Thermobaculum
## 2023-03-15 20:00:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiocystis
## 2023-03-15 20:00:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Deferribacter
## 2023-03-15 20:00:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylothermaceae.g__Methylohalobius
## 2023-03-15 20:00:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.g__Tenuivirus
## 2023-03-15 20:00:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Blastopirellula
## 2023-03-15 20:00:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Halotalea
## 2023-03-15 20:00:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Poxviridae.g__Alphaentomopoxvirus
## 2023-03-15 20:00:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Aerococcaceae.g__Eremococcus
## 2023-03-15 20:00:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Salimicrobium
## 2023-03-15 20:00:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Wolbachia
## 2023-03-15 20:00:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Holdemanella
## 2023-03-15 20:00:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Microcoleus
## 2023-03-15 20:00:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanoregulaceae.g__Methanoregula
## 2023-03-15 20:00:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Litoreibacter
## 2023-03-15 20:00:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Leeia
## 2023-03-15 20:00:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Crocinitomicaceae.g__Crocinitomix
## 2023-03-15 20:00:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Bromoviridae.g__Cucumovirus
## 2023-03-15 20:00:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Leeuwenhoekiella
## 2023-03-15 20:00:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Mimiviridae.g__Mimivirus
## 2023-03-15 20:00:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Gynuella
## 2023-03-15 20:00:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Marinimicrobium
## 2023-03-15 20:00:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Stanieria
## 2023-03-15 20:00:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methanosarcinaceae.g__Methanohalophilus
## 2023-03-15 20:00:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.c__Spartobacteria.g__Candidatus_Xiphinematobacter
## 2023-03-15 20:00:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Actinotignum
## 2023-03-15 20:00:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Salinivibrio
## 2023-03-15 20:00:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Renibacterium
## 2023-03-15 20:00:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Tolumonas
## 2023-03-15 20:00:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Thermotogaceae.g__Pseudothermotoga
## 2023-03-15 20:00:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Syntrophobotulus
## 2023-03-15 20:00:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Lymphocryptovirus
## 2023-03-15 20:00:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Cryobacterium
## 2023-03-15 20:00:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Flexilinea
## 2023-03-15 20:00:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Moranella
## 2023-03-15 20:00:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Gallionella
## 2023-03-15 20:00:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Lampropedia
## 2023-03-15 20:00:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Dactylococcopsis
## 2023-03-15 20:00:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Cyanobacterium
## 2023-03-15 20:00:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_IV._Incertae_Sedis.g__Mahella
## 2023-03-15 20:00:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Capnocytophaga
## 2023-03-15 20:00:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Chelonobacter
## 2023-03-15 20:00:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Herbiconiux
## 2023-03-15 20:00:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Cryocola
## 2023-03-15 20:00:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Thioploca
## 2023-03-15 20:00:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.g__Nitratiruptor
## 2023-03-15 20:00:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Vibrio
## 2023-03-15 20:00:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Ignatzschineria
## 2023-03-15 20:00:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Longilinea
## 2023-03-15 20:00:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Kerstersia
## 2023-03-15 20:00:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Clostridium
## 2023-03-15 20:00:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Thaumarchaeota.c__Nitrososphaeria.o__Nitrososphaerales.f__Nitrososphaeraceae.g__Nitrososphaera
## 2023-03-15 20:00:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Riesia
## 2023-03-15 20:00:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Aurantimonadaceae.g__Fulvimarina
## 2023-03-15 20:00:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Thermopetrobacter
## 2023-03-15 20:00:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Pelodictyon
## 2023-03-15 20:00:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Chloroflexia.o__Chloroflexales.f__Oscillochloridaceae.g__Oscillochloris
## 2023-03-15 20:00:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Ignavibacteriae.c__Ignavibacteria.o__Ignavibacteriales.f__Melioribacteraceae.g__Melioribacter
## 2023-03-15 20:00:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.f__Competibacteraceae.g__Candidatus_Competibacter
## 2023-03-15 20:00:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halarchaeum
## 2023-03-15 20:00:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Fermentimonas
## 2023-03-15 20:00:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Candidatus_Ruthia
## 2023-03-15 20:00:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Myxococcaceae.g__Corallococcus
## 2023-03-15 20:00:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Aestuariivita
## 2023-03-15 20:00:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Leadbetterella
## 2023-03-15 20:00:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Pseudaminobacter
## 2023-03-15 20:00:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Amphibacillus
## 2023-03-15 20:00:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Bdellovibrionales.f__Halobacteriovoraceae.g__Halobacteriovorax
## 2023-03-15 20:00:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Pyramidobacter
## 2023-03-15 20:00:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Thermoactinomycetaceae.g__Thermoactinomyces
## 2023-03-15 20:00:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Enterovirus
## 2023-03-15 20:00:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Parvularculales.f__Parvularculaceae.g__Parvularcula
## 2023-03-15 20:00:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Colwellia
## 2023-03-15 20:00:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sedimentitalea
## 2023-03-15 20:00:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Phaeodactylibacter
## 2023-03-15 20:00:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Ammonifex
## 2023-03-15 20:00:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.o__Bacteroidetes_Order_II._Incertae_sedis.f__Rhodothermaceae.g__Salinibacter
## 2023-03-15 20:00:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Mannheimia
## 2023-03-15 20:00:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Thermosynechococcus
## 2023-03-15 20:00:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Isosphaeraceae.g__Isosphaera
## 2023-03-15 20:00:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Spirochaetaceae.g__Salinispira
## 2023-03-15 20:00:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Bifidobacteriales.f__Bifidobacteriaceae.g__Parascardovia
## 2023-03-15 20:00:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Hellea
## 2023-03-15 20:00:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Acaricomes
## 2023-03-15 20:00:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.o__Bacteroidetes_Order_II._Incertae_sedis.f__Rhodothermaceae.g__Salisaeta
## 2023-03-15 20:00:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ketogulonicigenium
## 2023-03-15 20:00:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Jejuia
## 2023-03-15 20:00:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Wohlfahrtiimonas
## 2023-03-15 20:00:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Thaumarchaeota.g__Candidatus_Nitrosopelagicus
## 2023-03-15 20:00:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Eggerthia
## 2023-03-15 20:00:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiorhodococcus
## 2023-03-15 20:00:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Salipiger
## 2023-03-15 20:00:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Campylobacteraceae.g__Sulfurospirillum
## 2023-03-15 20:00:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Chloroherpeton
## 2023-03-15 20:00:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Sphingorhabdus
## 2023-03-15 20:00:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Derxia
## 2023-03-15 20:00:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Anaerophaga
## 2023-03-15 20:00:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Chroococcidiopsis
## 2023-03-15 20:00:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Glutamicibacter
## 2023-03-15 20:00:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Hydrogenobacter
## 2023-03-15 20:00:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Luteibacter
## 2023-03-15 20:00:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.g__Candidatus_Babela
## 2023-03-15 20:00:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Rhodothermaeota.c__Balneolia.o__Balneolales.f__Balneolaceae.g__Balneola
## 2023-03-15 20:00:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Pleurocapsa
## 2023-03-15 20:00:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Hafnia
## 2023-03-15 20:00:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Elusimicrobia.c__Elusimicrobia.o__Elusimicrobiales.f__Elusimicrobiaceae.g__Elusimicrobium
## 2023-03-15 20:00:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Paraoerskovia
## 2023-03-15 20:00:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermodesulfobiaceae.g__Thermodesulfobium
## 2023-03-15 20:00:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Terrabacter
## 2023-03-15 20:00:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Thermanaerothrix
## 2023-03-15 20:00:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Celeribacter
## 2023-03-15 20:00:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Aquamicrobium
## 2023-03-15 20:00:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bartonellaceae.g__Bartonella
## 2023-03-15 20:00:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudorhodobacter
## 2023-03-15 20:00:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Chitinophaga
## 2023-03-15 20:00:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thalassobius
## 2023-03-15 20:00:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Geovibrio
## 2023-03-15 20:00:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Kandleria
## 2023-03-15 20:00:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Allochromatium
## 2023-03-15 20:00:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pragia
## 2023-03-15 20:00:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Fibrobacteres.c__Chitinispirillia.o__Chitinispirillales.f__Chitinispirillaceae.g__Chitinispirillum
## 2023-03-15 20:00:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Caulobacterales.f__Caulobacteraceae.g__Woodsholea
## 2023-03-15 20:00:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Flexistipes
## 2023-03-15 20:00:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Mitsuaria
## 2023-03-15 20:00:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylococcus
## 2023-03-15 20:00:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Opitutales.f__Opitutaceae.g__Cephaloticoccus
## 2023-03-15 20:00:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Acidocella
## 2023-03-15 20:00:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Starkeya
## 2023-03-15 20:00:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Fabavirus
## 2023-03-15 20:00:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Aequorivita
## 2023-03-15 20:00:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfotignum
## 2023-03-15 20:00:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Granulibacter
## 2023-03-15 20:00:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Oceaniovalibus
## 2023-03-15 20:00:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Oxalobacteraceae.g__Pseudoduganella
## 2023-03-15 20:00:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Aeromonas
## 2023-03-15 20:00:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Sediminibacter
## 2023-03-15 20:00:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Mimiviridae.g__Cafeteriavirus
## 2023-03-15 20:00:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Lacinutrix
## 2023-03-15 20:00:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.g__Kallipyga
## 2023-03-15 20:00:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natrinema
## 2023-03-15 20:00:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Winogradskyella
## 2023-03-15 20:00:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Lunatimonas
## 2023-03-15 20:00:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Mariniradius
## 2023-03-15 20:00:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Thermomonosporaceae.g__Thermomonospora
## 2023-03-15 20:00:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Nodosilinea
## 2023-03-15 20:00:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Caliciviridae.g__Vesivirus
## 2023-03-15 20:00:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Proteus
## 2023-03-15 20:00:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Methylocapsa
## 2023-03-15 20:00:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Thiolapillus
## 2023-03-15 20:00:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Gluconacetobacter
## 2023-03-15 20:00:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Legionellaceae.g__Fluoribacter
## 2023-03-15 20:00:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Paramesorhizobium
## 2023-03-15 20:00:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Palaeococcus
## 2023-03-15 20:00:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Aquamavirus
## 2023-03-15 20:00:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Levilinea
## 2023-03-15 20:00:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Silanimonas
## 2023-03-15 20:00:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Simiduia
## 2023-03-15 20:00:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Coprococcus
## 2023-03-15 20:00:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Carnobacteriaceae.g__Alloiococcus
## 2023-03-15 20:00:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Hepeviridae.g__Piscihepevirus
## 2023-03-15 20:00:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zunongwangia
## 2023-03-15 20:00:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylobacillus
## 2023-03-15 20:00:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Asanoa
## 2023-03-15 20:00:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Carnobacteriaceae.g__Jeotgalibaca
## 2023-03-15 20:00:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Desulfuromonadaceae.g__Desulfuromonas
## 2023-03-15 20:00:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Austwickia
## 2023-03-15 20:00:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Richelia
## 2023-03-15 20:00:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Marinilabilia
## 2023-03-15 20:00:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Kurthia
## 2023-03-15 20:00:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Proteiniclasticum
## 2023-03-15 20:00:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Chelativorans
## 2023-03-15 20:00:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Gallaecimonas
## 2023-03-15 20:00:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Ignavibacteriae.c__Ignavibacteria.o__Ignavibacteriales.f__Ignavibacteriaceae.g__Ignavibacterium
## 2023-03-15 20:00:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Hydrogenophilales.f__Hydrogenophilaceae.g__Thiobacillus
## 2023-03-15 20:00:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Virgibacillus
## 2023-03-15 20:00:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.c__Spartobacteria.g__Terrimicrobium
## 2023-03-15 20:00:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Joostella
## 2023-03-15 20:00:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Bacteroidaceae.g__Bacteroides
## 2023-03-15 20:00:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Microterricola
## 2023-03-15 20:00:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Wenxinia
## 2023-03-15 20:00:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Kribbella
## 2023-03-15 20:00:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Siansivirga
## 2023-03-15 20:00:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Riemerella
## 2023-03-15 20:00:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Mucispirillum
## 2023-03-15 20:00:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Franconibacter
## 2023-03-15 20:00:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Flavobacterium
## 2023-03-15 20:00:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Dehalococcoidia.g__Dehalogenimonas
## 2023-03-15 20:00:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Shimwellia
## 2023-03-15 20:00:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bradyrhizobiaceae.g__Tardiphaga
## 2023-03-15 20:00:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Marvinbryantia
## 2023-03-15 20:00:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Tistrella
## 2023-03-15 20:00:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oleiphilaceae.g__Oleiphilus
## 2023-03-15 20:00:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Pseudoalteromonadaceae.g__Pseudoalteromonas
## 2023-03-15 20:00:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.f__Leptospiraceae.g__Leptonema
## 2023-03-15 20:00:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Christensenellaceae.g__Christensenella
## 2023-03-15 20:00:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Acidilobales.f__Caldisphaeraceae.g__Caldisphaera
## 2023-03-15 20:00:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitiniphilus
## 2023-03-15 20:00:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Polydnaviridae.g__Ichnovirus
## 2023-03-15 20:00:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Rhodospirillum
## 2023-03-15 20:00:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Kushneria
## 2023-03-15 20:00:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Oxalobacteraceae.g__Oxalobacter
## 2023-03-15 20:00:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Candidatus_Neoehrlichia
## 2023-03-15 20:00:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Thermococcus
## 2023-03-15 20:00:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Acidobacterium
## 2023-03-15 20:00:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Bdellovibrionales.f__Bacteriovoracaceae.g__Bacteriovorax
## 2023-03-15 20:00:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudooceanicola
## 2023-03-15 20:00:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halanaerobiaceae.g__Halothermothrix
## 2023-03-15 20:00:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Dethiosulfovibrio
## 2023-03-15 20:00:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Anaerostipes
## 2023-03-15 20:00:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Lentibacillus
## 2023-03-15 20:00:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Archaeoglobi.o__Archaeoglobales.f__Archaeoglobaceae.g__Geoglobus
## 2023-03-15 20:00:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bradyrhizobiaceae.g__Oligotropha
## 2023-03-15 20:00:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Aeribacillus
## 2023-03-15 20:00:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Halobacteroides
## 2023-03-15 20:00:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.g__Nitratifractor
## 2023-03-15 20:00:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Beggiatoa
## 2023-03-15 20:00:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Rhodovibrio
## 2023-03-15 20:00:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Frateuria
## 2023-03-15 20:00:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Arcticibacter
## 2023-03-15 20:00:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfocapsa
## 2023-03-15 20:00:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Spongiibacteraceae.g__Spongiibacter
## 2023-03-15 20:00:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Sandarakinorhabdus
## 2023-03-15 20:00:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylobacteriaceae.g__Microvirga
## 2023-03-15 20:00:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Alkaliphilus
## 2023-03-15 20:00:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudodonghicola
## 2023-03-15 20:00:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Thalassobaculum
## 2023-03-15 20:00:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_III._Incertae_Sedis.g__Thermosediminibacter
## 2023-03-15 20:00:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Yonghaparkia
## 2023-03-15 20:00:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Arenaviridae.g__Arenavirus
## 2023-03-15 20:00:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Prochlorales.f__Prochlorotrichaceae.g__Prochlorothrix
## 2023-03-15 20:00:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Oscillospiraceae.g__Oscillibacter
## 2023-03-15 20:00:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Spiribacter
## 2023-03-15 20:00:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinopolysporales.f__Actinopolysporaceae.g__Actinopolyspora
## 2023-03-15 20:00:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Alcanivoracaceae.g__Alcanivorax
## 2023-03-15 20:00:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Hymenobacter
## 2023-03-15 20:00:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Hydrogenibacillus
## 2023-03-15 20:00:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Geobacteraceae.g__Geopsychrobacter
## 2023-03-15 20:00:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Nitrincola
## 2023-03-15 20:00:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Candidatus_Accumulibacter
## 2023-03-15 20:00:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Ideonella
## 2023-03-15 20:00:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Desulfurispora
## 2023-03-15 20:00:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Yersinia
## 2023-03-15 20:00:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_III._Incertae_Sedis.g__Caldicellulosiruptor
## 2023-03-15 20:00:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Terasakiella
## 2023-03-15 20:00:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Sporomusaceae.g__Pelosinus
## 2023-03-15 20:00:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Ishikawaella
## 2023-03-15 20:00:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Escherichia
## 2023-03-15 20:00:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Gemmata
## 2023-03-15 20:00:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Thermoplasmatales.f__Picrophilaceae.g__Picrophilus
## 2023-03-15 20:00:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Ewingella
## 2023-03-15 20:00:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Simkaniaceae.g__Simkania
## 2023-03-15 20:00:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Bunyaviridae.g__Orthobunyavirus
## 2023-03-15 20:00:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Longispora
## 2023-03-15 20:00:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylovulum
## 2023-03-15 20:00:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Denitrobacterium
## 2023-03-15 20:00:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Rouxiella
## 2023-03-15 20:00:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Dongia
## 2023-03-15 20:00:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Yaniella
## 2023-03-15 20:00:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prevotellaceae.g__Hallella
## 2023-03-15 20:00:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Dinoroseobacter
## 2023-03-15 20:00:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Rubritepida
## 2023-03-15 20:00:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sediminimonas
## 2023-03-15 20:00:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfonatronovibrio
## 2023-03-15 20:00:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Rhodoluna
## 2023-03-15 20:00:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Andreprevotia
## 2023-03-15 20:00:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Eudoraea
## 2023-03-15 20:00:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfohalobium
## 2023-03-15 20:00:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Paraburkholderia
## 2023-03-15 20:00:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Hylemonella
## 2023-03-15 20:00:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.g__Higrevirus
## 2023-03-15 20:00:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Candidatus_Stoquefichus
## 2023-03-15 20:00:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanobacteriaceae.g__Methanosphaera
## 2023-03-15 20:00:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Castellaniella
## 2023-03-15 20:00:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Spirochaetaceae.g__Treponema
## 2023-03-15 20:00:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Flavisolibacter
## 2023-03-15 20:00:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Poxviridae.g__Leporipoxvirus
## 2023-03-15 20:00:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Chitinimonas
## 2023-03-15 20:00:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Circoviridae.g__Circovirus
## 2023-03-15 20:00:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Isosphaeraceae.g__Singulisphaera
## 2023-03-15 20:00:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Hydrogenovibrio
## 2023-03-15 20:00:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Kordiimonadales.f__Kordiimonadaceae.g__Kordiimonas
## 2023-03-15 20:00:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Glycomycetales.f__Glycomycetaceae.g__Haloglycomyces
## 2023-03-15 20:00:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Cyanothece
## 2023-03-15 20:00:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Enterorhabdus
## 2023-03-15 20:00:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Mycobacteriaceae.g__Mycobacterium
## 2023-03-15 20:00:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Rahnella
## 2023-03-15 20:00:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Leptolinea
## 2023-03-15 20:00:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Cucumibacter
## 2023-03-15 20:00:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Parvibaculum
## 2023-03-15 20:00:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Teredinibacter
## 2023-03-15 20:00:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.g__Phocaeicola
## 2023-03-15 20:00:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Akkermansiaceae.g__Akkermansia
## 2023-03-15 20:00:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Kineosporiales.f__Kineosporiaceae.g__Kineosporia
## 2023-03-15 20:00:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Xylella
## 2023-03-15 20:00:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Aliagarivorans
## 2023-03-15 20:00:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Blastomonas
## 2023-03-15 20:00:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Stappia
## 2023-03-15 20:00:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Tunalikevirus
## 2023-03-15 20:00:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cardiobacteriales.f__Cardiobacteriaceae.g__Cardiobacterium
## 2023-03-15 20:00:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Nitrosococcus
## 2023-03-15 20:00:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.g__Timonella
## 2023-03-15 20:00:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Peptostreptococcus
## 2023-03-15 20:00:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Steroidobacter
## 2023-03-15 20:00:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Sanguibacteroides
## 2023-03-15 20:00:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Thermodesulfatator
## 2023-03-15 20:00:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.g__Lawsonella
## 2023-03-15 20:00:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Thermales.f__Thermaceae.g__Oceanithermus
## 2023-03-15 20:00:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Carboxydothermus
## 2023-03-15 20:00:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Fibrobacteres.c__Fibrobacteria.o__Fibrobacterales.f__Fibrobacteraceae.g__Fibrobacter
## 2023-03-15 20:00:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Fulvivirga
## 2023-03-15 20:00:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Crenobacter
## 2023-03-15 20:00:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.g__Candidatus_Hepatobacter
## 2023-03-15 20:00:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Pelistega
## 2023-03-15 20:00:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Hoeflea
## 2023-03-15 20:00:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Ponticaulis
## 2023-03-15 20:00:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Galbibacter
## 2023-03-15 20:00:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Alphacoronavirus
## 2023-03-15 20:00:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Terracoccus
## 2023-03-15 20:00:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Hahellaceae.g__Hahella
## 2023-03-15 20:00:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Gallibacterium
## 2023-03-15 20:00:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Octadecabacter
## 2023-03-15 20:00:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Amoebophilaceae.g__Candidatus_Amoebophilus
## 2023-03-15 20:00:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Tetrasphaera
## 2023-03-15 20:00:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Anaerovibrio
## 2023-03-15 20:00:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chrysiogenetes.c__Chrysiogenetes.o__Chrysiogenales.f__Chrysiogenaceae.g__Desulfurispirillum
## 2023-03-15 20:00:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Marinobacterium
## 2023-03-15 20:00:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Fusobacteriaceae.g__Ilyobacter
## 2023-03-15 20:00:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Vitreoscilla
## 2023-03-15 20:00:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Nostoc
## 2023-03-15 20:00:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Anaerofustis
## 2023-03-15 20:00:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.g__Thermorudis
## 2023-03-15 20:00:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Gemmobacter
## 2023-03-15 20:00:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.g__Acidibacillus
## 2023-03-15 20:00:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Faecalibaculum
## 2023-03-15 20:00:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Oribacterium
## 2023-03-15 20:00:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobiaceae.g__Haloferula
## 2023-03-15 20:00:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Paenibacillus
## 2023-03-15 20:00:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thalassobacter
## 2023-03-15 20:00:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomonas
## 2023-03-15 20:00:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Oceanicaulis
## 2023-03-15 20:00:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Melissococcus
## 2023-03-15 20:00:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Haemophilus
## 2023-03-15 20:00:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Salinimicrobium
## 2023-03-15 20:00:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatitalea
## 2023-03-15 20:00:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Paenirhodobacter
## 2023-03-15 20:00:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Aminomonas
## 2023-03-15 20:00:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Salegentibacter
## 2023-03-15 20:00:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Chlamydiaceae.g__Chlamydia
## 2023-03-15 20:00:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Synergistes
## 2023-03-15 20:00:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Fictibacillus
## 2023-03-15 20:00:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfarculales.f__Desulfarculaceae.g__Dethiosulfatarculus
## 2023-03-15 20:00:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Simplexvirus
## 2023-03-15 20:00:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Zymomonas
## 2023-03-15 20:00:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Puniceicoccales.f__Puniceicoccaceae.g__Coraliomargarita
## 2023-03-15 20:00:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Rubrivivax
## 2023-03-15 20:00:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Verrucosispora
## 2023-03-15 20:00:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Agreia
## 2023-03-15 20:00:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Leuconostocaceae.g__Leuconostoc
## 2023-03-15 20:00:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methanosarcinaceae.g__Methanosarcina
## 2023-03-15 20:00:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Crocinitomicaceae.g__Fluviicola
## 2023-03-15 20:00:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Marseilleviridae.g__Marseillevirus
## 2023-03-15 20:00:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ahrensia
## 2023-03-15 20:00:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sagittula
## 2023-03-15 20:00:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Adhaeribacter
## 2023-03-15 20:00:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Maritimibacter
## 2023-03-15 20:00:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Betacoronavirus
## 2023-03-15 20:00:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Limnochordia.o__Limnochordales.f__Limnochordaceae.g__Limnochorda
## 2023-03-15 20:00:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prevotellaceae.g__Prevotella
## 2023-03-15 20:00:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfarculales.f__Desulfarculaceae.g__Desulfarculus
## 2023-03-15 20:00:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Psychroflexus
## 2023-03-15 20:00:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Diaphorobacter
## 2023-03-15 20:00:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Falsirhodobacter
## 2023-03-15 20:00:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Campylobacteraceae.g__Campylobacter
## 2023-03-15 20:00:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Anaerobacillus
## 2023-03-15 20:00:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Nonlabens
## 2023-03-15 20:00:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Aurantimonadaceae.g__Martelella
## 2023-03-15 20:00:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Sediminicola
## 2023-03-15 20:00:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermabacteraceae.g__Dermabacter
## 2023-03-15 20:00:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Psychromonadaceae.g__Psychromonas
## 2023-03-15 20:00:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Thermales.f__Thermaceae.g__Marinithermus
## 2023-03-15 20:00:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Oerskovia
## 2023-03-15 20:00:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Saccharomonospora
## 2023-03-15 20:00:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Granulicella
## 2023-03-15 20:00:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Novispirillum
## 2023-03-15 20:00:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Lactobacillaceae.g__Sharpea
## 2023-03-15 20:00:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Micavibrio
## 2023-03-15 20:00:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Isoptericola
## 2023-03-15 20:00:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Halieaceae.g__Luminiphilus
## 2023-03-15 20:00:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Ornithobacterium
## 2023-03-15 20:00:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Spounalikevirus
## 2023-03-15 20:00:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Asaia
## 2023-03-15 20:00:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ruegeria
## 2023-03-15 20:00:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Mycoplasmatales.f__Mycoplasmataceae.g__Ureaplasma
## 2023-03-15 20:00:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Halonatronum
## 2023-03-15 20:00:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Sulfuritalea
## 2023-03-15 20:00:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Kluyvera
## 2023-03-15 20:00:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Oceanospirillum
## 2023-03-15 20:00:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Oxalobacteraceae.g__Herbaspirillum
## 2023-03-15 20:00:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Arenimonas
## 2023-03-15 20:00:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Leucothrix
## 2023-03-15 20:00:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Acidobacteria.c__Solibacteres.o__Solibacterales.g__Bryobacter
## 2023-03-15 20:00:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Croceitalea
## 2023-03-15 20:00:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Odoribacteraceae.g__Odoribacter
## 2023-03-15 20:00:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Aminobacterium
## 2023-03-15 20:00:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Comamonas
## 2023-03-15 20:00:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Listeriaceae.g__Listeria
## 2023-03-15 20:00:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Pseudohongiella
## 2023-03-15 20:00:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Shimia
## 2023-03-15 20:00:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Leuconostocaceae.g__Weissella
## 2023-03-15 20:00:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Iridoviridae.g__Ranavirus
## 2023-03-15 20:00:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Thermomonosporaceae.g__Spirillospora
## 2023-03-15 20:00:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Kamptonema
## 2023-03-15 20:00:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Halothiobacillaceae.g__Halothiobacillus
## 2023-03-15 20:00:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Polyangiaceae.g__Chondromyces
## 2023-03-15 20:00:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Gulbenkiania
## 2023-03-15 20:00:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfovibrionaceae.g__Lawsonia
## 2023-03-15 20:00:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Phaeospirillum
## 2023-03-15 20:00:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Saccharibacter
## 2023-03-15 20:00:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Maricaulis
## 2023-03-15 20:00:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Croceibacter
## 2023-03-15 20:00:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Rubinisphaera
## 2023-03-15 20:00:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Kibdelosporangium
## 2023-03-15 20:00:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Hahellaceae.g__Zooshikella
## 2023-03-15 20:00:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Dokdonella
## 2023-03-15 20:00:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zhouia
## 2023-03-15 20:00:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Ectothiorhodospira
## 2023-03-15 20:00:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Oleiagrimonas
## 2023-03-15 20:00:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Senegalimassilia
## 2023-03-15 20:00:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobiaceae.g__Verrucomicrobium
## 2023-03-15 20:00:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Thermanaerovibrio
## 2023-03-15 20:00:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Magnetococcales.f__Magnetococcaceae.g__Magnetococcus
## 2023-03-15 20:00:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Microscilla
## 2023-03-15 20:00:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Adenoviridae.g__Mastadenovirus
## 2023-03-15 20:00:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Pseudolabrys
## 2023-03-15 20:00:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Chania
## 2023-03-15 20:00:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Viridibacillus
## 2023-03-15 20:00:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Limnobacter
## 2023-03-15 20:00:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Thermonemataceae.g__Thermonema
## 2023-03-15 20:00:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Dermatophilus
## 2023-03-15 20:00:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Waddliaceae.g__Waddlia
## 2023-03-15 20:00:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Microthrixaceae.g__Candidatus_Microthrix
## 2023-03-15 20:00:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Lentisphaerae.c__Lentisphaeria.o__Lentisphaerales.f__Lentisphaeraceae.g__Lentisphaera
## 2023-03-15 20:00:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Halorhodospira
## 2023-03-15 20:00:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Oceanibaculum
## 2023-03-15 20:00:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Sediminibacterium
## 2023-03-15 20:00:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Stigonematales.g__Hapalosiphon
## 2023-03-15 20:00:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Filomicrobium
## 2023-03-15 20:00:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitinilyticum
## 2023-03-15 20:00:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Carnobacteriaceae.g__Allofustis
## 2023-03-15 20:00:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Ornatilinea
## 2023-03-15 20:00:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Geitlerinema
## 2023-03-15 20:00:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Cyanobium
## 2023-03-15 20:00:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Lactobacillaceae.g__Lactobacillus
## 2023-03-15 20:00:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Methyloferula
## 2023-03-15 20:00:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Niabella
## 2023-03-15 20:00:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Tachikawaea
## 2023-03-15 20:00:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Candidatus_Desulforudis
## 2023-03-15 20:00:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfonatronaceae.g__Desulfonatronum
## 2023-03-15 20:00:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Baculoviridae.g__Alphabaculovirus
## 2023-03-15 20:00:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Veillonellales.f__Veillonellaceae.g__Veillonella
## 2023-03-15 20:00:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Candidatus_Cloacimonetes.g__Candidatus_Cloacimonas
## 2023-03-15 20:00:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Plantibacter
## 2023-03-15 20:00:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Olleya
## 2023-03-15 20:00:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Pelagibacterium
## 2023-03-15 20:00:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Pandoraea
## 2023-03-15 20:00:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Rivulariaceae.g__Calothrix
## 2023-03-15 20:00:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Dicistroviridae.g__Cripavirus
## 2023-03-15 20:00:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Taylorella
## 2023-03-15 20:00:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Flavonifractor
## 2023-03-15 20:00:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Microbulbiferaceae.g__Microbulbifer
## 2023-03-15 20:00:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Allokutzneria
## 2023-03-15 20:00:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Gordoniaceae.g__Gordonia
## 2023-03-15 20:00:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Mitsuokella
## 2023-03-15 20:00:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Catenuloplanes
## 2023-03-15 20:00:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Glycomycetales.f__Glycomycetaceae.g__Glycomyces
## 2023-03-15 20:00:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Weeksella
## 2023-03-15 20:00:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Kineosporiales.f__Kineosporiaceae.g__Kineococcus
## 2023-03-15 20:00:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Catelliglobosispora
## 2023-03-15 20:00:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Ferriphaselus
## 2023-03-15 20:00:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Leptotrichiaceae.g__Streptobacillus
## 2023-03-15 20:00:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Arsukibacterium
## 2023-03-15 20:00:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Holosporaceae.g__Holospora
## 2023-03-15 20:00:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Midichloriaceae.g__Candidatus_Midichloria
## 2023-03-15 20:00:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Cesiribacter
## 2023-03-15 20:00:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Desulfurococcaceae.g__Ignicoccus
## 2023-03-15 20:00:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Confluentimicrobium
## 2023-03-15 20:00:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseivivax
## 2023-03-15 20:00:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfobulbus
## 2023-03-15 20:00:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Prauserella
## 2023-03-15 20:00:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Coprobacillus
## 2023-03-15 20:00:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Flavihumibacter
## 2023-03-15 20:00:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Planktomarina
## 2023-03-15 20:00:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Flaviflexus
## 2023-03-15 20:00:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Alkaliflexus
## 2023-03-15 20:00:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Propionibacteriaceae.g__Propionimicrobium
## 2023-03-15 20:00:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Pseudoglutamicibacter
## 2023-03-15 20:00:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Rikenellaceae.g__Mucinivorans
## 2023-03-15 20:00:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Hamadaea
## 2023-03-15 20:00:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Astroviridae.g__Mamastrovirus
## 2023-03-15 20:01:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Agrococcus
## 2023-03-15 20:01:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Rubritaleaceae.g__Rubritalea
## 2023-03-15 20:01:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cardiobacteriales.f__Cardiobacteriaceae.g__Dichelobacter
## 2023-03-15 20:01:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Ferrimicrobium
## 2023-03-15 20:01:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Aquabacterium
## 2023-03-15 20:01:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Kozakia
## 2023-03-15 20:01:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Silvibacterium
## 2023-03-15 20:01:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Sporolactobacillaceae.g__Tuberibacillus
## 2023-03-15 20:01:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Gulosibacter
## 2023-03-15 20:01:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Neptunomonas
## 2023-03-15 20:01:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulforegula
## 2023-03-15 20:01:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylobacteriaceae.g__Meganema
## 2023-03-15 20:01:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Leptothrix
## 2023-03-15 20:01:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Thiorhodospira
## 2023-03-15 20:01:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Enteractinococcus
## 2023-03-15 20:01:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Virgaviridae.g__Pomovirus
## 2023-03-15 20:01:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Eubacterium
## 2023-03-15 20:01:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Haematospirillum
## 2023-03-15 20:01:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Raoultella
## 2023-03-15 20:01:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Mucilaginibacter
## 2023-03-15 20:01:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Tanticharoenia
## 2023-03-15 20:01:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Finegoldia
## 2023-03-15 20:01:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Emticicia
## 2023-03-15 20:01:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Sciscionella
## 2023-03-15 20:01:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Thermomonas
## 2023-03-15 20:01:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Henriciella
## 2023-03-15 20:01:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Formosa
## 2023-03-15 20:01:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Citromicrobium
## 2023-03-15 20:01:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophaceae.g__Desulfomonile
## 2023-03-15 20:01:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Nafulsella
## 2023-03-15 20:01:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.g__Caedibacter
## 2023-03-15 20:01:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Rudaea
## 2023-03-15 20:01:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Salivirus
## 2023-03-15 20:01:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Methylocella
## 2023-03-15 20:01:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Polynucleobacter
## 2023-03-15 20:01:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.c__Spartobacteria.o__Chthoniobacterales.f__Chthoniobacteraceae.g__Chthoniobacter
## 2023-03-15 20:01:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Myroides
## 2023-03-15 20:01:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halapricum
## 2023-03-15 20:01:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylotenera
## 2023-03-15 20:01:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Johnsonella
## 2023-03-15 20:01:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Kineosporiales.f__Kineosporiaceae.g__Angustibacter
## 2023-03-15 20:01:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Glaciecola
## 2023-03-15 20:01:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Polycyclovorans
## 2023-03-15 20:01:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Actinocatenispora
## 2023-03-15 20:01:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Rhodobacter
## 2023-03-15 20:01:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Arcanobacterium
## 2023-03-15 20:01:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Orbales.f__Orbaceae.g__Candidatus_Schmidhempelia
## 2023-03-15 20:01:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Roseburia
## 2023-03-15 20:01:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Acidobacteria.c__Solibacteres.o__Solibacterales.f__Solibacteraceae.g__Candidatus_Solibacter
## 2023-03-15 20:01:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Polyangiaceae.g__Sorangium
## 2023-03-15 20:01:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Eggerthella
## 2023-03-15 20:01:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Muricauda
## 2023-03-15 20:01:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Desulfurobacteriales.f__Desulfurobacteriaceae.g__Desulfurobacterium
## 2023-03-15 20:01:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Commensalibacter
## 2023-03-15 20:01:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Retroviridae.g__Betaretrovirus
## 2023-03-15 20:01:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Caldicoprobacteraceae.g__Caldicoprobacter
## 2023-03-15 20:01:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Anaplasma
## 2023-03-15 20:01:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Orbales.f__Orbaceae.g__Frischella
## 2023-03-15 20:01:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Mageeibacillus
## 2023-03-15 20:01:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Dicistroviridae.g__Aparavirus
## 2023-03-15 20:01:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Neorickettsia
## 2023-03-15 20:01:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Salinarchaeum
## 2023-03-15 20:01:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Orthomyxoviridae.g__Isavirus
## 2023-03-15 20:01:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Catenulisporales.f__Actinospicaceae.g__Actinospica
## 2023-03-15 20:01:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Hirschia
## 2023-03-15 20:01:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Thermoanaerobacter
## 2023-03-15 20:01:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Saccharibacillus
## 2023-03-15 20:01:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Spirosoma
## 2023-03-15 20:01:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Magnetospira
## 2023-03-15 20:01:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Methylibium
## 2023-03-15 20:01:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Dictyoglomi.c__Dictyoglomia.o__Dictyoglomales.f__Dictyoglomaceae.g__Dictyoglomus
## 2023-03-15 20:01:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Kinetoplastibacterium
## 2023-03-15 20:01:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Histophilus
## 2023-03-15 20:01:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methermicoccaceae.g__Methermicoccus
## 2023-03-15 20:01:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Cytophaga
## 2023-03-15 20:01:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Paraglaciecola
## 2023-03-15 20:01:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Vitellibacter
## 2023-03-15 20:01:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Orenia
## 2023-03-15 20:01:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Maribius
## 2023-03-15 20:01:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Echinicola
## 2023-03-15 20:01:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Papillomaviridae.g__Lambdapapillomavirus
## 2023-03-15 20:01:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Sulfuricellales.f__Sulfuricellaceae.g__Sulfuricella
## 2023-03-15 20:01:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Propionibacteriaceae.g__Granulicoccus
## 2023-03-15 20:01:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Cylindrospermum
## 2023-03-15 20:01:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Enorma
## 2023-03-15 20:01:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhizobiaceae.g__Rhizobium
## 2023-03-15 20:01:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Roseivirga
## 2023-03-15 20:01:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Beutenbergiaceae.g__Beutenbergia
## 2023-03-15 20:01:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Paracaedibacteraceae.g__Candidatus_Paracaedibacter
## 2023-03-15 20:01:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Mycoplasmatales.f__Mycoplasmataceae.g__Mycoplasma
## 2023-03-15 20:01:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Segetibacter
## 2023-03-15 20:01:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Sporomusaceae.g__Anaeromusa
## 2023-03-15 20:01:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Leptotrichiaceae.g__Sebaldella
## 2023-03-15 20:01:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Neisseria
## 2023-03-15 20:01:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Candidatus_Puniceispirillum
## 2023-03-15 20:01:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Anaerolinea
## 2023-03-15 20:01:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Providencia
## 2023-03-15 20:01:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Arthrospira
## 2023-03-15 20:01:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.g__Tropheryma
## 2023-03-15 20:01:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanococci.o__Methanococcales.f__Methanococcaceae.g__Methanococcus
## 2023-03-15 20:01:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Mobilicoccus
## 2023-03-15 20:01:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Tenacibaculum
## 2023-03-15 20:01:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Acetohalobium
## 2023-03-15 20:01:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhizobiaceae.g__Neorhizobium
## 2023-03-15 20:01:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Francisellaceae.g__Francisella
## 2023-03-15 20:01:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Nesiotobacter
## 2023-03-15 20:01:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Actinobaculum
## 2023-03-15 20:01:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Acidobacteria.c__Holophagae.o__Holophagales.f__Holophagaceae.g__Geothrix
## 2023-03-15 20:01:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Rhizobacter
## 2023-03-15 20:01:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Pseudomonadaceae.g__Oblitimonas
## 2023-03-15 20:01:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Desulfuromonadaceae.g__Pelobacter
## 2023-03-15 20:01:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Cecembia
## 2023-03-15 20:01:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Gimesia
## 2023-03-15 20:01:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfovibrionaceae.g__Bilophila
## 2023-03-15 20:01:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Alcaligenes
## 2023-03-15 20:01:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Criblamydiaceae.g__Criblamydia
## 2023-03-15 20:01:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Dactylosporangium
## 2023-03-15 20:01:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.g__Candidatus_Azobacteroides
## 2023-03-15 20:01:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Defluviimonas
## 2023-03-15 20:01:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Gordonibacter
## 2023-03-15 20:01:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Marivirga
## 2023-03-15 20:01:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Marinovum
## 2023-03-15 20:01:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Solibacillus
## 2023-03-15 20:01:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Flaviviridae.g__Flavivirus
## 2023-03-15 20:01:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Azohydromonas
## 2023-03-15 20:01:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Haloterrigena
## 2023-03-15 20:01:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Herpesvirales.f__Alloherpesviridae.g__Ictalurivirus
## 2023-03-15 20:01:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pluralibacter
## 2023-03-15 20:01:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Robinsoniella
## 2023-03-15 20:01:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Erythrobacteraceae.g__Altererythrobacter
## 2023-03-15 20:01:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Sutterellaceae.g__Sutterella
## 2023-03-15 20:01:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Xenorhabdus
## 2023-03-15 20:01:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Nakamurellales.f__Nakamurellaceae.g__Nakamurella
## 2023-03-15 20:01:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Hydrogenivirga
## 2023-03-15 20:01:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prolixibacteraceae.g__Sunxiuqinia
## 2023-03-15 20:01:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Veillonellales.f__Veillonellaceae.g__Megasphaera
## 2023-03-15 20:01:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.o__Methylacidiphilales.f__Methylacidiphilaceae.g__Methylacidiphilum
## 2023-03-15 20:01:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Symbiobacteriaceae.g__Symbiobacterium
## 2023-03-15 20:01:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Parvimonas
## 2023-03-15 20:01:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Parabacteroides
## 2023-03-15 20:01:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halorhabdus
## 2023-03-15 20:01:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.o__Sphaerobacterales.f__Sphaerobacteraceae.g__Sphaerobacter
## 2023-03-15 20:01:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Moraxellaceae.g__Enhydrobacter
## 2023-03-15 20:01:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Streptococcaceae.g__Streptococcus
## 2023-03-15 20:01:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Oceanibulbus
## 2023-03-15 20:01:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Kiloniellales.f__Kiloniellaceae.g__Kiloniella
## 2023-03-15 20:01:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bradyrhizobiaceae.g__Rhodopseudomonas
## 2023-03-15 20:01:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Rhodopirellula
## 2023-03-15 20:01:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Candidatus_Korarchaeota.g__Candidatus_Korarchaeum
## 2023-03-15 20:01:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Candidatus_Soleaferrea
## 2023-03-15 20:01:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfosarcina
## 2023-03-15 20:01:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Faecalibacterium
## 2023-03-15 20:01:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Pilimelia
## 2023-03-15 20:01:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Crinalium
## 2023-03-15 20:01:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Pseudobacteroides
## 2023-03-15 20:01:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Planctopirus
## 2023-03-15 20:01:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Candidatus_Arthromitus
## 2023-03-15 20:01:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Pseudomonadaceae.g__Azotobacter
## 2023-03-15 20:01:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sulfitobacter
## 2023-03-15 20:01:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Lewinella
## 2023-03-15 20:01:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Erysipelatoclostridium
## 2023-03-15 20:01:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Fervidobacteriaceae.g__Thermosipho
## 2023-03-15 20:01:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Ramlibacter
## 2023-03-15 20:01:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Halocynthiibacter
## 2023-03-15 20:01:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Microbacterium
## 2023-03-15 20:01:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Elusimicrobia.c__Endomicrobia.o__Endomicrobiales.f__Endomicrobiaceae.g__Endomicrobium
## 2023-03-15 20:01:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Sicinivirus
## 2023-03-15 20:01:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Cystobacteraceae.g__Stigmatella
## 2023-03-15 20:01:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Frankiales.f__Sporichthyaceae.g__Sporichthya
## 2023-03-15 20:01:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thioclava
## 2023-03-15 20:01:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Microtetraspora
## 2023-03-15 20:01:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Arsenicicoccus
## 2023-03-15 20:01:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Phycodnaviridae.g__Prymnesiovirus
## 2023-03-15 20:01:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinomycetospora
## 2023-03-15 20:01:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Anaeromyxobacteraceae.g__Anaeromyxobacter
## 2023-03-15 20:01:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Thermocrispum
## 2023-03-15 20:01:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Herpesvirales.f__Alloherpesviridae.g__Batrachovirus
## 2023-03-15 20:01:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Paludibacterium
## 2023-03-15 20:01:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sneathiellales.f__Sneathiellaceae.g__Sneathiella
## 2023-03-15 20:01:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Faecalicoccus
## 2023-03-15 20:01:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Flexithrix
## 2023-03-15 20:01:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Papillomaviridae.g__Omegapapillomavirus
## 2023-03-15 20:01:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Mangrovimonas
## 2023-03-15 20:01:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Pasteurella
## 2023-03-15 20:01:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Kocuria
## 2023-03-15 20:01:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Ktedonobacteria.o__Ktedonobacterales.f__Ktedonobacteraceae.g__Ktedonobacter
## 2023-03-15 20:01:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Pirellula
## 2023-03-15 20:01:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylophilus
## 2023-03-15 20:01:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Blattabacteriaceae.g__Blattabacterium
## 2023-03-15 20:01:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Aerococcaceae.g__Facklamia
## 2023-03-15 20:01:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Slackia
## 2023-03-15 20:01:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Thermobrachium
## 2023-03-15 20:01:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Fibrella
## 2023-03-15 20:01:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Maribacter
## 2023-03-15 20:01:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Kosakonia
## 2023-03-15 20:01:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Geodermatophilales.f__Geodermatophilaceae.g__Geodermatophilus
## 2023-03-15 20:01:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Moritellaceae.g__Moritella
## 2023-03-15 20:01:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Serinicoccus
## 2023-03-15 20:01:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Staphylococcaceae.g__Macrococcus
## 2023-03-15 20:01:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Alicycliphilus
## 2023-03-15 20:01:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Flaviviridae.g__Pestivirus
## 2023-03-15 20:01:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermacoccaceae.g__Demetria
## 2023-03-15 20:01:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanothermaceae.g__Methanothermus
## 2023-03-15 20:01:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Listeriaceae.g__Brochothrix
## 2023-03-15 20:01:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Varicellovirus
## 2023-03-15 20:01:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Planctomyces
## 2023-03-15 20:01:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Waikavirus
## 2023-03-15 20:01:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Acholeplasmatales.f__Acholeplasmataceae.g__Candidatus_Phytoplasma
## 2023-03-15 20:01:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Fusobacteriaceae.g__Psychrilyobacter
## 2023-03-15 20:01:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Delftia
## 2023-03-15 20:01:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Limnohabitans
## 2023-03-15 20:01:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Jannaschia
## 2023-03-15 20:01:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Epulopiscium
## 2023-03-15 20:01:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thioflavicoccus
## 2023-03-15 20:01:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.g__Anaerosporomusa
## 2023-03-15 20:01:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Eikenella
## 2023-03-15 20:01:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Methylophaga
## 2023-03-15 20:01:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Loktanella
## 2023-03-15 20:01:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Phycodnaviridae.g__Prasinovirus
## 2023-03-15 20:01:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Amantichitinum
## 2023-03-15 20:01:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiales_Family_XIII._Incertae_Sedis.g__Anaerovorax
## 2023-03-15 20:01:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylosarcina
## 2023-03-15 20:01:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Microbispora
## 2023-03-15 20:01:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Vulgatibacteraceae.g__Vulgatibacter
## 2023-03-15 20:01:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Brachyspirales.f__Brachyspiraceae.g__Brachyspira
## 2023-03-15 20:01:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Paenisporosarcina
## 2023-03-15 20:01:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Belnapia
## 2023-03-15 20:01:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Propionicicella
## 2023-03-15 20:01:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Candidatus_Profftella
## 2023-03-15 20:01:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Pseudoflavonifractor
## 2023-03-15 20:01:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Cycloclasticus
## 2023-03-15 20:01:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Kineosphaera
## 2023-03-15 20:01:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Tepidicaulis
## 2023-03-15 20:01:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Segniliparaceae.g__Segniliparus
## 2023-03-15 20:01:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Tannerella
## 2023-03-15 20:01:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Geofilum
## 2023-03-15 20:01:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Microchaetaceae.g__Tolypothrix
## 2023-03-15 20:01:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pannonibacter
## 2023-03-15 20:01:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Thermoactinomycetaceae.g__Risungbinella
## 2023-03-15 20:01:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Variovorax
## 2023-03-15 20:01:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Clostridioides
## 2023-03-15 20:01:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Porticoccaceae.g__Porticoccus
## 2023-03-15 20:01:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Catabacteriaceae.g__Catabacter
## 2023-03-15 20:01:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Arenibacter
## 2023-03-15 20:01:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Knoellia
## 2023-03-15 20:01:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methanosarcinaceae.g__Methanomethylovorans
## 2023-03-15 20:01:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Amorphus
## 2023-03-15 20:01:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Anaerobaculum
## 2023-03-15 20:01:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Persicobacteraceae.g__Persicobacter
## 2023-03-15 20:01:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Rufibacter
## 2023-03-15 20:01:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiocapsa
## 2023-03-15 20:01:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Cellulosilyticum
## 2023-03-15 20:01:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Apibacter
## 2023-03-15 20:01:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Acetobacter
## 2023-03-15 20:01:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Succinivibrionaceae.g__Succinivibrio
## 2023-03-15 20:01:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Bafinivirus
## 2023-03-15 20:01:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Aneurinibacillus
## 2023-03-15 20:01:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Xanthobacter
## 2023-03-15 20:01:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Deinococcales.f__Trueperaceae.g__Truepera
## 2023-03-15 20:01:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zobellia
## 2023-03-15 20:01:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Promicromonospora
## 2023-03-15 20:01:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Skermanella
## 2023-03-15 20:01:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Lyngbya
## 2023-03-15 20:01:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Haliscomenobacter
## 2023-03-15 20:01:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Edwardsiella
## 2023-03-15 20:01:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Bifidobacteriales.f__Bifidobacteriaceae.g__Scardovia
## 2023-03-15 20:01:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Planomonospora
## 2023-03-15 20:01:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Blautia
## 2023-03-15 20:01:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Leifsonia
## 2023-03-15 20:01:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pantoea
## 2023-03-15 20:01:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Halobacillus
## 2023-03-15 20:01:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Phyllobacterium
## 2023-03-15 20:01:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanocellales.f__Methanocellaceae.g__Methanocella
## 2023-03-15 20:01:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Azoarcus
## 2023-03-15 20:01:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Caulobacterales.f__Caulobacteraceae.g__Phenylobacterium
## 2023-03-15 20:01:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Candidatus_Aquiluna
## 2023-03-15 20:01:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Thermotogaceae.g__Thermotoga
## 2023-03-15 20:01:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Synechocystis
## 2023-03-15 20:01:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Fodinicurvata
## 2023-03-15 20:01:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Micrococcus
## 2023-03-15 20:01:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.g__Thermobispora
## 2023-03-15 20:01:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Chlorobium
## 2023-03-15 20:01:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobia_subdivision_3.g__Pedosphaera
## 2023-03-15 20:01:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Opitutales.f__Opitutaceae.g__Opitutus
## 2023-03-15 20:01:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Tamlana
## 2023-03-15 20:01:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Aurantimonadaceae.g__Aurantimonas
## 2023-03-15 20:01:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Muribacter
## 2023-03-15 20:01:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Mizugakiibacter
## 2023-03-15 20:01:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Sandaracinaceae.g__Sandaracinus
## 2023-03-15 20:01:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Tatumella
## 2023-03-15 20:01:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Buttiauxella
## 2023-03-15 20:01:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Shigella
## 2023-03-15 20:01:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Rhodothermaeota.c__Balneolia.o__Balneolales.f__Balneolaceae.g__Gracilimonas
## 2023-03-15 20:01:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Aquincola
## 2023-03-15 20:01:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Gracilibacillus
## 2023-03-15 20:01:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Domibacillus
## 2023-03-15 20:01:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Xenococcus
## 2023-03-15 20:01:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Alteromonas
## 2023-03-15 20:01:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Gemmatimonadetes.c__Gemmatimonadetes.o__Gemmatimonadales.f__Gemmatimonadaceae.g__Gemmatirosa
## 2023-03-15 20:01:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Polyomaviridae.g__Polyomavirus
## 2023-03-15 20:01:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Stenoxybacter
## 2023-03-15 20:01:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Lutibacter
## 2023-03-15 20:01:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanobacteriaceae.g__Methanobrevibacter
## 2023-03-15 20:01:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Acidobacteria.c__Blastocatellia.g__Chloracidobacterium
## 2023-03-15 20:01:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Enterobacter
## 2023-03-15 20:01:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Chelatococcus
## 2023-03-15 20:01:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfovermiculus
## 2023-03-15 20:01:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylobacter
## 2023-03-15 20:01:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Algoriphagus
## 2023-03-15 20:01:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Coleofasciculus
## 2023-03-15 20:01:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Methylopila
## 2023-03-15 20:01:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfobacterium
## 2023-03-15 20:01:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Inquilinus
## 2023-03-15 20:01:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Chryseobacterium
## 2023-03-15 20:01:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Demequinaceae.g__Demequina
## 2023-03-15 20:01:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Campylobacteraceae.g__Arcobacter
## 2023-03-15 20:01:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Phycicoccus
## 2023-03-15 20:01:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Actinotalea
## 2023-03-15 20:01:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Xylophilus
## 2023-03-15 20:01:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Planktothrix
## 2023-03-15 20:01:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudovibrio
## 2023-03-15 20:01:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Macavirus
## 2023-03-15 20:01:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Oxalobacteraceae.g__Herminiimonas
## 2023-03-15 20:01:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Thermobacillus
## 2023-03-15 20:01:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Moraxellaceae.g__Perlucidibaca
## 2023-03-15 20:01:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Pseudopedobacter
## 2023-03-15 20:01:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Poxviridae.g__Betaentomopoxvirus
## 2023-03-15 20:01:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Tsukamurellaceae.g__Tsukamurella
## 2023-03-15 20:01:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Ilumatobacter
## 2023-03-15 20:01:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Acidaminococcales.f__Acidaminococcaceae.g__Phascolarctobacterium
## 2023-03-15 20:01:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prevotellaceae.g__Alloprevotella
## 2023-03-15 20:01:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Atopobiaceae.g__Atopobium
## 2023-03-15 20:01:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Tymovirales.f__Alphaflexiviridae.g__Potexvirus
## 2023-03-15 20:01:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Paucibacter
## 2023-03-15 20:01:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Alcanivoracaceae.g__Kangiella
## 2023-03-15 20:01:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Dehalococcoidia.o__Dehalococcoidales.f__Dehalococcoidaceae.g__Dehalococcoides
## 2023-03-15 20:01:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Cryptobacterium
## 2023-03-15 20:01:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Glaciibacter
maaslin_likely_group_without <- function_Maaslin2(df_ACC_filter_likely_Voom_SNM, "Without_combined", "Temp/likely_group_without")
## [1] "Warning: Deleting existing log file: Temp/likely_group_without/maaslin2.log"
## 2023-03-15 20:01:40 INFO::Writing function arguments to log file
## 2023-03-15 20:01:40 INFO::Verifying options selected are valid
## 2023-03-15 20:01:40 INFO::Determining format of input files
## 2023-03-15 20:01:40 INFO::Input format is data samples as rows and metadata samples as rows
## 2023-03-15 20:01:40 INFO::Formula for random effects: expr ~ (1 | SEX) + (1 | Ethnicity_Race) + (1 | AGE) + (1 | Neoplasm_Status) + (1 | Clinical_Status_3_Mo_Post.Op) + (1 | Surgical_margin) + (1 | ATYPICAL_MITOTIC_FIGURES)
## 2023-03-15 20:01:40 INFO::Formula for fixed effects: expr ~  Without_combined
## 2023-03-15 20:01:40 INFO::Filter data based on min abundance and min prevalence
## 2023-03-15 20:01:40 INFO::Total samples in data: 77
## 2023-03-15 20:01:40 INFO::Min samples required with min abundance for a feature not to be filtered: 0.000000
## 2023-03-15 20:01:40 INFO::Total filtered features: 71
## 2023-03-15 20:01:40 INFO::Filtered feature names from abundance and prevalence filtering: k__Viruses.f__Baculoviridae.g__Deltabaculovirus, k__Viruses.o__Caudovirales.f__Myoviridae.g__I3likevirus, k__Viruses.f__Anelloviridae.g__Gammatorquevirus, k__Viruses.g__Tenuivirus, k__Viruses.f__Poxviridae.g__Capripoxvirus, k__Viruses.o__Mononegavirales.f__Nyamiviridae.g__Nyavirus, k__Viruses.g__Emaravirus, k__Viruses.o__Picornavirales.f__Secoviridae.g__Waikavirus, k__Viruses.f__Poxviridae.g__Yatapoxvirus, k__Viruses.f__Poxviridae.g__Orthopoxvirus, k__Viruses.o__Caudovirales.f__Siphoviridae.g__L5likevirus, k__Viruses.f__Hytrosaviridae.g__Muscavirus, k__Viruses.f__Closteroviridae.g__Crinivirus, k__Viruses.o__Caudovirales.f__Myoviridae.g__Cp220likevirus, k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Fervidicella, k__Bacteria.p__Acidobacteria.c__Holophagae.o__Holophagales.f__Holophagaceae.g__Geothrix, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Cedecea, k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Catabacteriaceae.g__Catabacter, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Coxiellaceae.g__Diplorickettsia, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Tachikawaea, k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Rikenellaceae.g__Rikenella, k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Caminibacter, k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Belliella, k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinosynnema, k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natronobacterium, k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Bifidobacteriales.f__Bifidobacteriaceae.g__Alloscardovia, k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Fusobacteriaceae.g__Cetobacterium, k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Leptotrichiaceae.g__Streptobacillus, k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanolacinia, k__Archaea.p__Euryarchaeota.c__Methanococci.o__Methanococcales.f__Methanocaldococcaceae.g__Methanotorris, k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Halocynthiibacter, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Pseudacidovorax, k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudophaeobacter, k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Hydrogenothermaceae.g__Persephonella, k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pelagibaca, k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Flaviramulus, k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.g__Candidatus_Babela, k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiales_Family_XIII._Incertae_Sedis.g__Anaerovorax, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Candidatus_Evansia, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Arenimonas, k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halomicrobium, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Alkalilimnicola, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Brenneria, k__Bacteria.p__Chrysiogenetes.c__Chrysiogenetes.o__Chrysiogenales.f__Chrysiogenaceae.g__Chrysiogenes, k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Gottschalkia, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomicrobium, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Xenophilus, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Moellerella, k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Microchaetaceae.g__Microchaete, k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Oxobacter, k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Lebetimonas, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Morococcus, k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Ulvibacter, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Rubrivivax, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Marinagarivorans, k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Solitalea, k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Thermoplasmatales.f__Ferroplasmaceae.g__Ferroplasma, k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanoregulaceae.g__Methanosphaerula, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Dechloromonas, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Azovibrio, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Hylemonella, k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Sulfuricurvum, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Leminorella, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Sphaerotilus, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Halieaceae.g__Congregibacter, k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Psychrobacillus, k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Microtetraspora, k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Odoribacteraceae.g__Butyricimonas, k__Bacteria.p__Chloroflexi.c__Ardenticatenia.o__Ardenticatenales.f__Ardenticatenaceae.g__Ardenticatena, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Thauera, k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Paucisalibacillus
## 2023-03-15 20:01:40 INFO::Total filtered features with variance filtering: 0
## 2023-03-15 20:01:40 INFO::Filtered feature names from variance filtering:
## 2023-03-15 20:01:40 INFO::Running selected normalization method: NONE
## 2023-03-15 20:01:40 INFO::Applying z-score to standardize continuous metadata
## 2023-03-15 20:01:40 INFO::Running selected transform method: NONE
## 2023-03-15 20:01:40 INFO::Running selected analysis method: LM
## 2023-03-15 20:01:40 INFO::Creating cluster of 6 R processes
## 2023-03-15 20:02:09 INFO::Counting total values for each feature
## 2023-03-15 20:02:09 WARNING::Deleting existing residuals file: Temp/likely_group_without/residuals.rds
## 2023-03-15 20:02:09 INFO::Writing residuals to file Temp/likely_group_without/residuals.rds
## 2023-03-15 20:02:09 WARNING::Deleting existing fitted file: Temp/likely_group_without/fitted.rds
## 2023-03-15 20:02:09 INFO::Writing fitted values to file Temp/likely_group_without/fitted.rds
## 2023-03-15 20:02:09 WARNING::Deleting existing ranef file: Temp/likely_group_without/ranef.rds
## 2023-03-15 20:02:09 INFO::Writing extracted random effects to file Temp/likely_group_without/ranef.rds
## 2023-03-15 20:02:09 INFO::Writing all results to file (ordered by increasing q-values): Temp/likely_group_without/all_results.tsv
## 2023-03-15 20:02:09 INFO::Writing the significant results (those which are less than or equal to the threshold of 0.250000 ) to file (ordered by increasing q-values): Temp/likely_group_without/significant_results.tsv
## 2023-03-15 20:02:09 INFO::Writing heatmap of significant results to file: Temp/likely_group_without/heatmap.pdf
## Warning in xtfrm.data.frame(x): cannot xtfrm data frames
## [1] "There is not enough metadata in the associations to create a heatmap plot. Please review the associations in text output file."
## 2023-03-15 20:02:09 INFO::Writing association plots (one for each significant association) to output folder: Temp/likely_group_without
## 2023-03-15 20:02:09 INFO::Plotting associations from most to least significant, grouped by metadata
## 2023-03-15 20:02:09 INFO::Plotting data for metadata number 1, Without_combined
## 2023-03-15 20:02:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Sfi1unalikevirus
## 2023-03-15 20:02:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Poxviridae.g__Parapoxvirus
## 2023-03-15 20:02:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Bicaudaviridae.g__Bicaudavirus
## 2023-03-15 20:02:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Circoviridae.g__Gyrovirus
## 2023-03-15 20:02:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Caulimoviridae.g__Badnavirus
## 2023-03-15 20:02:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Papillomaviridae.g__Betapapillomavirus
## 2023-03-15 20:02:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Tymovirales.f__Betaflexiviridae.g__Trichovirus
## 2023-03-15 20:02:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Bcep22likevirus
## 2023-03-15 20:02:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Ligamenvirales.f__Lipothrixviridae.g__Deltalipothrixvirus
## 2023-03-15 20:02:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Poxviridae.g__Cervidpoxvirus
## 2023-03-15 20:02:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Potyviridae.g__Bymovirus
## 2023-03-15 20:02:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phikmvlikevirus
## 2023-03-15 20:02:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__T5likevirus
## 2023-03-15 20:02:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Papillomaviridae.g__Mupapillomavirus
## 2023-03-15 20:02:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Lambdalikevirus
## 2023-03-15 20:02:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Papillomaviridae.g__Phipapillomavirus
## 2023-03-15 20:02:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Anelloviridae.g__Alphatorquevirus
## 2023-03-15 20:02:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.g__Pithovirus
## 2023-03-15 20:02:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Barnyardlikevirus
## 2023-03-15 20:02:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__P100virus
## 2023-03-15 20:02:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Reoviridae.g__Cypovirus
## 2023-03-15 20:02:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Iltovirus
## 2023-03-15 20:02:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Bunyaviridae.g__Phlebovirus
## 2023-03-15 20:02:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Closteroviridae.g__Closterovirus
## 2023-03-15 20:02:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Viunalikevirus
## 2023-03-15 20:02:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Phicbklikevirus
## 2023-03-15 20:02:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Fuselloviridae.g__Alphafusellovirus
## 2023-03-15 20:02:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__N4likevirus
## 2023-03-15 20:02:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Retroviridae.g__Lentivirus
## 2023-03-15 20:02:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Luteoviridae.g__Polerovirus
## 2023-03-15 20:02:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Geminiviridae.g__Begomovirus
## 2023-03-15 20:02:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Andromedalikevirus
## 2023-03-15 20:02:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Aphthovirus
## 2023-03-15 20:02:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Iridoviridae.g__Lymphocystivirus
## 2023-03-15 20:02:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Twortlikevirus
## 2023-03-15 20:02:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Cheravirus
## 2023-03-15 20:02:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Ligamenvirales.f__Rudiviridae.g__Rudivirus
## 2023-03-15 20:02:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Closteroviridae.g__Ampelovirus
## 2023-03-15 20:02:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Phietalikevirus
## 2023-03-15 20:02:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Papillomaviridae.g__Gammapapillomavirus
## 2023-03-15 20:02:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Herpesvirales.f__Malacoherpesviridae.g__Ostreavirus
## 2023-03-15 20:02:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Sfi21dtunalikevirus
## 2023-03-15 20:02:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Tymovirales.f__Betaflexiviridae.g__Foveavirus
## 2023-03-15 20:02:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.g__Bacilladnavirus
## 2023-03-15 20:02:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Skunalikevirus
## 2023-03-15 20:02:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Tymovirales.f__Tymoviridae.g__Marafivirus
## 2023-03-15 20:02:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Phikzlikevirus
## 2023-03-15 20:02:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Orthomyxoviridae.g__Influenzavirus_C
## 2023-03-15 20:02:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phi29likevirus
## 2023-03-15 20:02:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Tectiviridae.g__Tectivirus
## 2023-03-15 20:02:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Caulimoviridae.g__Cavemovirus
## 2023-03-15 20:02:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Anelloviridae.g__Betatorquevirus
## 2023-03-15 20:02:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Caulimoviridae.g__Caulimovirus
## 2023-03-15 20:02:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Pbunalikevirus
## 2023-03-15 20:02:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Reoviridae.g__Phytoreovirus
## 2023-03-15 20:02:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Bromoviridae.g__Alfamovirus
## 2023-03-15 20:02:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Sp6likevirus
## 2023-03-15 20:02:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Sphaerolipoviridae.g__Gammasphaerolipovirus
## 2023-03-15 20:02:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Flaviviridae.g__Pegivirus
## 2023-03-15 20:02:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Mononegavirales.f__Rhabdoviridae.g__Vesiculovirus
## 2023-03-15 20:02:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Mononegavirales.f__Rhabdoviridae.g__Lyssavirus
## 2023-03-15 20:02:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Hepadnaviridae.g__Orthohepadnavirus
## 2023-03-15 20:02:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Tymovirales.f__Alphaflexiviridae.g__Allexivirus
## 2023-03-15 20:02:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Parvoviridae.g__Ambidensovirus
## 2023-03-15 20:02:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Comovirus
## 2023-03-15 20:02:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.g__Polemovirus
## 2023-03-15 20:02:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Leviviridae.g__Levivirus
## 2023-03-15 20:02:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phieco32likevirus
## 2023-03-15 20:02:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Reoviridae.g__Aquareovirus
## 2023-03-15 20:02:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Bromoviridae.g__Ilarvirus
## 2023-03-15 20:02:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Phic3unalikevirus
## 2023-03-15 20:02:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Narnaviridae.g__Narnavirus
## 2023-03-15 20:02:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Totiviridae.g__Totivirus
## 2023-03-15 20:02:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Chilikevirus
## 2023-03-15 20:02:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Potyviridae.g__Tritimovirus
## 2023-03-15 20:02:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Viroids.f__Pospiviroidae.g__Coleviroid
## 2023-03-15 20:02:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Papillomaviridae.g__Dyopipapillomavirus
## 2023-03-15 20:02:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Siccibacter
## 2023-03-15 20:02:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Neosynechococcus
## 2023-03-15 20:02:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Dolichospermum
## 2023-03-15 20:02:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Altibacter
## 2023-03-15 20:02:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Methanomassiliicoccales.f__Methanomassiliicoccaceae.g__Candidatus_Methanomethylophilus
## 2023-03-15 20:02:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Haloarcula
## 2023-03-15 20:02:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Nitritalea
## 2023-03-15 20:02:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Mangrovibacter
## 2023-03-15 20:02:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Thalassotalea
## 2023-03-15 20:02:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Pseudoramibacter
## 2023-03-15 20:02:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Natronomonas
## 2023-03-15 20:02:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfospira
## 2023-03-15 20:02:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Arenitalea
## 2023-03-15 20:02:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Thermoactinomycetaceae.g__Shimazuella
## 2023-03-15 20:02:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Gaetbulibacter
## 2023-03-15 20:02:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Basilea
## 2023-03-15 20:02:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Alicyclobacillaceae.g__Effusibacillus
## 2023-03-15 20:02:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitinibacter
## 2023-03-15 20:02:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanoregulaceae.g__Methanolinea
## 2023-03-15 20:02:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Myxosarcina
## 2023-03-15 20:02:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Gayadomonas
## 2023-03-15 20:02:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Jeotgalibacillus
## 2023-03-15 20:02:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Zymobacter
## 2023-03-15 20:02:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Paeniglutamicibacter
## 2023-03-15 20:02:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halobellus
## 2023-03-15 20:02:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Cyclobacterium
## 2023-03-15 20:02:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Sideroxydans
## 2023-03-15 20:02:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Sediminibacillus
## 2023-03-15 20:02:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methanosarcinaceae.g__Methanohalobium
## 2023-03-15 20:02:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Robiginitalea
## 2023-03-15 20:02:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Caldimicrobium
## 2023-03-15 20:02:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Actinopolymorpha
## 2023-03-15 20:02:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Candidatus_Phaeomarinobacter
## 2023-03-15 20:02:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Candidatus_Koribacter
## 2023-03-15 20:02:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermabacteraceae.g__Helcobacillus
## 2023-03-15 20:02:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Centipeda
## 2023-03-15 20:02:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Nocardiopsaceae.g__Allosalinactinospora
## 2023-03-15 20:02:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ponticoccus
## 2023-03-15 20:02:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halogranum
## 2023-03-15 20:02:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Nautilia
## 2023-03-15 20:02:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Obesumbacterium
## 2023-03-15 20:02:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Desulfurobacteriales.f__Desulfurobacteriaceae.g__Thermovibrio
## 2023-03-15 20:02:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Aliiroseovarius
## 2023-03-15 20:02:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halobacterium
## 2023-03-15 20:02:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.g__Thermosulfidibacter
## 2023-03-15 20:02:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Stigonematales.g__Mastigocladopsis
## 2023-03-15 20:02:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Thaumarchaeota.o__Nitrosopumilales.f__Nitrosopumilaceae.g__Candidatus_Nitrosoarchaeum
## 2023-03-15 20:02:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Mesoaciditogales.f__Mesoaciditogaceae.g__Mesoaciditoga
## 2023-03-15 20:02:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Wolinella
## 2023-03-15 20:02:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Halopiger
## 2023-03-15 20:02:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Thaumarchaeota.o__Nitrosopumilales.f__Nitrosopumilaceae.g__Nitrosopumilus
## 2023-03-15 20:02:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Marinococcus
## 2023-03-15 20:02:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfobacula
## 2023-03-15 20:02:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanoculleus
## 2023-03-15 20:02:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Spongiibacteraceae.g__Dasania
## 2023-03-15 20:02:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Aquifex
## 2023-03-15 20:02:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Thermincola
## 2023-03-15 20:02:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Thalassomonas
## 2023-03-15 20:02:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Shuttleworthia
## 2023-03-15 20:02:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylovorus
## 2023-03-15 20:02:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.o__Thermomicrobiales.f__Thermomicrobiaceae.g__Thermomicrobium
## 2023-03-15 20:02:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halogeometricum
## 2023-03-15 20:02:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Thermocrinis
## 2023-03-15 20:02:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Arhodomonas
## 2023-03-15 20:02:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanofollis
## 2023-03-15 20:02:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.g__Hoyosella
## 2023-03-15 20:02:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Mesonia
## 2023-03-15 20:02:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Basfia
## 2023-03-15 20:02:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Candidatus_Atelocyanobacterium
## 2023-03-15 20:02:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Allobaculum
## 2023-03-15 20:02:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Coriobacterium
## 2023-03-15 20:02:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Haloplanus
## 2023-03-15 20:02:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Flagellimonas
## 2023-03-15 20:02:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Thermoproteales.f__Thermoproteaceae.g__Vulcanisaeta
## 2023-03-15 20:02:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Spongiibacteraceae.g__Zhongshania
## 2023-03-15 20:02:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Afifella
## 2023-03-15 20:02:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Rummeliibacillus
## 2023-03-15 20:02:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfurivibrio
## 2023-03-15 20:02:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Salinibacillus
## 2023-03-15 20:02:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Pseudobutyrivibrio
## 2023-03-15 20:02:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Kosmotogales.f__Kosmotogaceae.g__Mesotoga
## 2023-03-15 20:02:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Paracaedibacteraceae.g__Candidatus_Odyssella
## 2023-03-15 20:02:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Holdemania
## 2023-03-15 20:02:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Coprobacter
## 2023-03-15 20:02:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Dielma
## 2023-03-15 20:02:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Terribacillus
## 2023-03-15 20:02:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Acidilobales.f__Acidilobaceae.g__Acidilobus
## 2023-03-15 20:02:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanoplanus
## 2023-03-15 20:02:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseibacterium
## 2023-03-15 20:02:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Lentzea
## 2023-03-15 20:02:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Candidatus_Methylopumilus
## 2023-03-15 20:02:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Halolactibacillus
## 2023-03-15 20:02:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Lacimicrobium
## 2023-03-15 20:02:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Nisaea
## 2023-03-15 20:02:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Halostagnicola
## 2023-03-15 20:02:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Adlercreutzia
## 2023-03-15 20:02:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Candidatus_Photodesmus
## 2023-03-15 20:02:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfonatronospira
## 2023-03-15 20:02:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Nereida
## 2023-03-15 20:02:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Cloacibacillus
## 2023-03-15 20:02:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Sellimonas
## 2023-03-15 20:02:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Thaumarchaeota.g__Candidatus_Nitrosotenuis
## 2023-03-15 20:02:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Thermoproteales.f__Thermoproteaceae.g__Caldivirga
## 2023-03-15 20:02:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Subdoligranulum
## 2023-03-15 20:02:30 INFO::Creating boxplot for categorical data, Without_combined vs contaminant1Harvard
## 2023-03-15 20:02:31 INFO::Creating boxplot for categorical data, Without_combined vs contaminant2HarvardCanadaBaylorWashU
## 2023-03-15 20:02:31 INFO::Creating boxplot for categorical data, Without_combined vs contaminant3AllSeqCenters
## 2023-03-15 20:02:31 INFO::Creating boxplot for categorical data, Without_combined vs contaminant4RandomSpikesHarvard
## 2023-03-15 20:02:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Archaeoglobi.o__Archaeoglobales.f__Archaeoglobaceae.g__Ferroglobus
## 2023-03-15 20:02:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Virgaviridae.g__Pecluvirus
## 2023-03-15 20:02:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Bunyaviridae.g__Hantavirus
## 2023-03-15 20:02:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Gramella
## 2023-03-15 20:02:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Bermanella
## 2023-03-15 20:02:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Inoviridae.g__Inovirus
## 2023-03-15 20:02:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Legionellaceae.g__Tatlockia
## 2023-03-15 20:02:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatiglans
## 2023-03-15 20:02:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Amphritea
## 2023-03-15 20:02:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Aromatoleum
## 2023-03-15 20:02:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Pyrococcus
## 2023-03-15 20:02:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Reinekea
## 2023-03-15 20:02:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Saccharospirillum
## 2023-03-15 20:02:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natronorubrum
## 2023-03-15 20:02:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.g__Methyloceanibacter
## 2023-03-15 20:02:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.o__Haloplasmatales.f__Haloplasmataceae.g__Haloplasma
## 2023-03-15 20:02:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Yokenella
## 2023-03-15 20:02:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Rudanella
## 2023-03-15 20:02:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.g__Thermobaculum
## 2023-03-15 20:02:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Prosthecochloris
## 2023-03-15 20:02:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Cryomorphaceae.g__Owenweeksia
## 2023-03-15 20:02:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomarinum
## 2023-03-15 20:02:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiocystis
## 2023-03-15 20:02:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prolixibacteraceae.g__Prolixibacter
## 2023-03-15 20:02:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Deferribacter
## 2023-03-15 20:02:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.g__Aciduliprofundum
## 2023-03-15 20:02:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Rubidibacter
## 2023-03-15 20:02:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halanaeroarchaeum
## 2023-03-15 20:02:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Youngiibacter
## 2023-03-15 20:02:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylothermaceae.g__Methylohalobius
## 2023-03-15 20:02:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Balneatrix
## 2023-03-15 20:02:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Puniceibacterium
## 2023-03-15 20:02:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Thermoproteales.f__Thermofilaceae.g__Thermofilum
## 2023-03-15 20:02:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Thalassolituus
## 2023-03-15 20:02:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Microvirgula
## 2023-03-15 20:02:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Agarivorans
## 2023-03-15 20:02:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Lymphocryptovirus
## 2023-03-15 20:02:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Aliihoeflea
## 2023-03-15 20:02:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Verrucomicrobia.c__Spartobacteria.g__Candidatus_Xiphinematobacter
## 2023-03-15 20:02:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Catenovulum
## 2023-03-15 20:02:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Dactylococcopsis
## 2023-03-15 20:02:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Salinimonas
## 2023-03-15 20:02:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Sedimenticola
## 2023-03-15 20:02:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Tolumonas
## 2023-03-15 20:02:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Nocardiopsaceae.g__Streptomonospora
## 2023-03-15 20:02:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Pyrodictiaceae.g__Pyrodictium
## 2023-03-15 20:02:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Parvularculales.f__Parvularculaceae.g__Parvularcula
## 2023-03-15 20:02:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Leeia
## 2023-03-15 20:02:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Azonexus
## 2023-03-15 20:02:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Blastopirellula
## 2023-03-15 20:02:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.f__Competibacteraceae.g__Candidatus_Competibacter
## 2023-03-15 20:02:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Chloroflexia.o__Chloroflexales.f__Oscillochloridaceae.g__Oscillochloris
## 2023-03-15 20:02:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halarchaeum
## 2023-03-15 20:02:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Pelodictyon
## 2023-03-15 20:02:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatirhabdium
## 2023-03-15 20:02:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Thermotogaceae.g__Pseudothermotoga
## 2023-03-15 20:02:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halalkalicoccus
## 2023-03-15 20:02:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Citreicella
## 2023-03-15 20:02:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Ignavibacteriae.c__Ignavibacteria.o__Ignavibacteriales.f__Melioribacteraceae.g__Melioribacter
## 2023-03-15 20:02:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Litoreibacter
## 2023-03-15 20:02:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Leeuwenhoekiella
## 2023-03-15 20:02:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Aliiglaciecola
## 2023-03-15 20:02:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Mimiviridae.g__Mimivirus
## 2023-03-15 20:02:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_IV._Incertae_Sedis.g__Mahella
## 2023-03-15 20:02:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Renibacterium
## 2023-03-15 20:02:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Gynuella
## 2023-03-15 20:02:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Marinimicrobium
## 2023-03-15 20:02:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Stanieria
## 2023-03-15 20:02:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Herbiconiux
## 2023-03-15 20:02:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Campylobacteraceae.g__Sulfurospirillum
## 2023-03-15 20:02:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Cryobacterium
## 2023-03-15 20:02:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Salinivibrio
## 2023-03-15 20:02:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Thermopetrobacter
## 2023-03-15 20:02:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Derxia
## 2023-03-15 20:02:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Thaumarchaeota.g__Candidatus_Nitrosopelagicus
## 2023-03-15 20:02:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Ideonella
## 2023-03-15 20:02:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Isosphaeraceae.g__Isosphaera
## 2023-03-15 20:02:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Maritalea
## 2023-03-15 20:02:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Hafnia
## 2023-03-15 20:02:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Flexilinea
## 2023-03-15 20:02:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Marinospirillum
## 2023-03-15 20:02:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Moranella
## 2023-03-15 20:02:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Gallionella
## 2023-03-15 20:02:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Longilinea
## 2023-03-15 20:02:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Mannheimia
## 2023-03-15 20:02:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Cyanobacterium
## 2023-03-15 20:02:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Chelonobacter
## 2023-03-15 20:02:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Holdemanella
## 2023-03-15 20:02:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Spirochaetaceae.g__Treponema
## 2023-03-15 20:02:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Amphibacillus
## 2023-03-15 20:02:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Bromoviridae.g__Oleavirus
## 2023-03-15 20:02:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halanaerobiaceae.g__Halothermothrix
## 2023-03-15 20:02:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Geovibrio
## 2023-03-15 20:02:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Cryocola
## 2023-03-15 20:02:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudorhodobacter
## 2023-03-15 20:02:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Crocinitomicaceae.g__Crocinitomix
## 2023-03-15 20:02:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Leadbetterella
## 2023-03-15 20:02:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Bromoviridae.g__Cucumovirus
## 2023-03-15 20:02:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Rhodovibrio
## 2023-03-15 20:02:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Bdellovibrionales.f__Halobacteriovoraceae.g__Halobacteriovorax
## 2023-03-15 20:02:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Deefgea
## 2023-03-15 20:02:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Fictibacillus
## 2023-03-15 20:02:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Luteibacter
## 2023-03-15 20:02:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Kerstersia
## 2023-03-15 20:02:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Kandleria
## 2023-03-15 20:02:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Actinotignum
## 2023-03-15 20:02:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Thaumarchaeota.c__Nitrososphaeria.o__Nitrososphaerales.f__Nitrososphaeraceae.g__Nitrososphaera
## 2023-03-15 20:02:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methanosarcinaceae.g__Methanohalophilus
## 2023-03-15 20:02:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Gemmata
## 2023-03-15 20:02:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.o__Bacteroidetes_Order_II._Incertae_sedis.f__Rhodothermaceae.g__Salisaeta
## 2023-03-15 20:02:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Riesia
## 2023-03-15 20:02:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Hydrogenobacter
## 2023-03-15 20:02:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Pleurocapsa
## 2023-03-15 20:02:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Kurthia
## 2023-03-15 20:02:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Halotalea
## 2023-03-15 20:02:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Poxviridae.g__Alphaentomopoxvirus
## 2023-03-15 20:02:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Aerococcaceae.g__Eremococcus
## 2023-03-15 20:02:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Salipiger
## 2023-03-15 20:02:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Joostella
## 2023-03-15 20:02:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Aestuariivita
## 2023-03-15 20:02:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Myxococcaceae.g__Corallococcus
## 2023-03-15 20:02:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanoregulaceae.g__Methanoregula
## 2023-03-15 20:02:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Legionellaceae.g__Fluoribacter
## 2023-03-15 20:02:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Enterovirus
## 2023-03-15 20:02:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Sphingorhabdus
## 2023-03-15 20:02:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Proteiniclasticum
## 2023-03-15 20:02:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Hellea
## 2023-03-15 20:02:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Pyramidobacter
## 2023-03-15 20:02:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Oxalobacteraceae.g__Pseudoduganella
## 2023-03-15 20:02:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Phaeodactylibacter
## 2023-03-15 20:02:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Acaricomes
## 2023-03-15 20:02:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sedimentitalea
## 2023-03-15 20:02:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Chloroherpeton
## 2023-03-15 20:02:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Mitsuaria
## 2023-03-15 20:02:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Thermosynechococcus
## 2023-03-15 20:02:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Pseudaminobacter
## 2023-03-15 20:02:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.o__Bacteroidetes_Order_II._Incertae_sedis.f__Rhodothermaceae.g__Salinibacter
## 2023-03-15 20:02:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Acidocella
## 2023-03-15 20:02:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Spirochaetaceae.g__Salinispira
## 2023-03-15 20:02:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Bifidobacteriales.f__Bifidobacteriaceae.g__Parascardovia
## 2023-03-15 20:02:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Wolbachia
## 2023-03-15 20:02:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Granulibacter
## 2023-03-15 20:02:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Ammonifex
## 2023-03-15 20:02:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Eggerthia
## 2023-03-15 20:02:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Sanguibacteroides
## 2023-03-15 20:02:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Leuconostocaceae.g__Leuconostoc
## 2023-03-15 20:02:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Candidatus_Ruthia
## 2023-03-15 20:02:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Fermentimonas
## 2023-03-15 20:02:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Clostridium
## 2023-03-15 20:02:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Thermanaerothrix
## 2023-03-15 20:02:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Gluconacetobacter
## 2023-03-15 20:02:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Jejuia
## 2023-03-15 20:02:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Wohlfahrtiimonas
## 2023-03-15 20:02:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Paramesorhizobium
## 2023-03-15 20:02:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Terasakiella
## 2023-03-15 20:02:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_III._Incertae_Sedis.g__Caldicellulosiruptor
## 2023-03-15 20:02:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ketogulonicigenium
## 2023-03-15 20:02:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Candidatus_Stoquefichus
## 2023-03-15 20:02:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bradyrhizobiaceae.g__Tardiphaga
## 2023-03-15 20:02:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Caulobacterales.f__Caulobacteraceae.g__Woodsholea
## 2023-03-15 20:02:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.g__Nitratiruptor
## 2023-03-15 20:02:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Thioploca
## 2023-03-15 20:02:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Ignatzschineria
## 2023-03-15 20:02:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Chroococcidiopsis
## 2023-03-15 20:02:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Silanimonas
## 2023-03-15 20:02:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Paraoerskovia
## 2023-03-15 20:02:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Aurantimonadaceae.g__Fulvimarina
## 2023-03-15 20:02:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylococcus
## 2023-03-15 20:02:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.g__Kallipyga
## 2023-03-15 20:02:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Xylanimonas
## 2023-03-15 20:02:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Thermomonosporaceae.g__Thermomonospora
## 2023-03-15 20:02:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Proteus
## 2023-03-15 20:02:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Mariniradius
## 2023-03-15 20:02:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Kordiimonadales.f__Kordiimonadaceae.g__Kordiimonas
## 2023-03-15 20:02:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Hepeviridae.g__Piscihepevirus
## 2023-03-15 20:02:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Hydrogenibacillus
## 2023-03-15 20:02:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Aquamavirus
## 2023-03-15 20:02:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Ignavibacteriae.c__Ignavibacteria.o__Ignavibacteriales.f__Ignavibacteriaceae.g__Ignavibacterium
## 2023-03-15 20:02:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Mycobacteriaceae.g__Mycobacterium
## 2023-03-15 20:02:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Vibrio
## 2023-03-15 20:02:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Akkermansiaceae.g__Akkermansia
## 2023-03-15 20:02:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Verrucomicrobia.c__Spartobacteria.g__Terrimicrobium
## 2023-03-15 20:02:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Gemmobacter
## 2023-03-15 20:02:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Saccharibacter
## 2023-03-15 20:02:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermodesulfobiaceae.g__Thermodesulfobium
## 2023-03-15 20:02:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Denitrobacterium
## 2023-03-15 20:02:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Capnocytophaga
## 2023-03-15 20:02:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Stappia
## 2023-03-15 20:02:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Bunyaviridae.g__Orthobunyavirus
## 2023-03-15 20:02:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Rhodothermaeota.c__Balneolia.o__Balneolales.f__Balneolaceae.g__Balneola
## 2023-03-15 20:02:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Leptolinea
## 2023-03-15 20:02:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Oceaniovalibus
## 2023-03-15 20:02:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Chelativorans
## 2023-03-15 20:02:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Yonghaparkia
## 2023-03-15 20:02:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Flexistipes
## 2023-03-15 20:02:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Richelia
## 2023-03-15 20:02:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfovibrionaceae.g__Lawsonia
## 2023-03-15 20:02:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Kribbella
## 2023-03-15 20:02:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylobacillus
## 2023-03-15 20:02:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylovulum
## 2023-03-15 20:02:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Franconibacter
## 2023-03-15 20:02:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Castellaniella
## 2023-03-15 20:02:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Shimwellia
## 2023-03-15 20:02:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Simiduia
## 2023-03-15 20:02:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Anaerophaga
## 2023-03-15 20:02:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Simplexvirus
## 2023-03-15 20:02:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.g__Nitratifractor
## 2023-03-15 20:02:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfocapsa
## 2023-03-15 20:02:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Flavisolibacter
## 2023-03-15 20:02:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Rubritepida
## 2023-03-15 20:02:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Tistrella
## 2023-03-15 20:02:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Raoultella
## 2023-03-15 20:02:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Vitreoscilla
## 2023-03-15 20:02:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Desulfuromonadaceae.g__Desulfuromonas
## 2023-03-15 20:02:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Frateuria
## 2023-03-15 20:02:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Sporomusaceae.g__Pelosinus
## 2023-03-15 20:02:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Polydnaviridae.g__Ichnovirus
## 2023-03-15 20:02:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Sediminibacter
## 2023-03-15 20:02:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Spongiibacteraceae.g__Spongiibacter
## 2023-03-15 20:02:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Chlamydiaceae.g__Chlamydia
## 2023-03-15 20:02:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Yaniella
## 2023-03-15 20:02:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Nitrosococcus
## 2023-03-15 20:02:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natrinema
## 2023-03-15 20:02:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Levilinea
## 2023-03-15 20:02:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Enterorhabdus
## 2023-03-15 20:02:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prevotellaceae.g__Hallella
## 2023-03-15 20:03:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Hydrogenophilales.f__Hydrogenophilaceae.g__Thiobacillus
## 2023-03-15 20:03:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Ishikawaella
## 2023-03-15 20:03:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Candidatus_Neoehrlichia
## 2023-03-15 20:03:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Thiolapillus
## 2023-03-15 20:03:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Dethiosulfovibrio
## 2023-03-15 20:03:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Mimiviridae.g__Cafeteriavirus
## 2023-03-15 20:03:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Arenaviridae.g__Arenavirus
## 2023-03-15 20:03:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Palaeococcus
## 2023-03-15 20:03:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Lentibacillus
## 2023-03-15 20:03:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Aeribacillus
## 2023-03-15 20:03:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudooceanicola
## 2023-03-15 20:03:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Archaeoglobi.o__Archaeoglobales.f__Archaeoglobaceae.g__Geoglobus
## 2023-03-15 20:03:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Carnobacteriaceae.g__Alloiococcus
## 2023-03-15 20:03:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Siansivirga
## 2023-03-15 20:03:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Parvibaculum
## 2023-03-15 20:03:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Isosphaeraceae.g__Singulisphaera
## 2023-03-15 20:03:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pragia
## 2023-03-15 20:03:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfohalobium
## 2023-03-15 20:03:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Isoptericola
## 2023-03-15 20:03:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Longispora
## 2023-03-15 20:03:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Virgibacillus
## 2023-03-15 20:03:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinopolysporales.f__Actinopolysporaceae.g__Actinopolyspora
## 2023-03-15 20:03:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Aquamicrobium
## 2023-03-15 20:03:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Coprococcus
## 2023-03-15 20:03:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Fusobacteriaceae.g__Ilyobacter
## 2023-03-15 20:03:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Yersinia
## 2023-03-15 20:03:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfonatronovibrio
## 2023-03-15 20:03:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Aeromonas
## 2023-03-15 20:03:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sediminimonas
## 2023-03-15 20:03:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudodonghicola
## 2023-03-15 20:03:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Lunatimonas
## 2023-03-15 20:03:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Bacteroidaceae.g__Bacteroides
## 2023-03-15 20:03:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Cucumibacter
## 2023-03-15 20:03:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Nitrincola
## 2023-03-15 20:03:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Carboxydothermus
## 2023-03-15 20:03:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Listeriaceae.g__Listeria
## 2023-03-15 20:03:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Tunalikevirus
## 2023-03-15 20:03:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Mucispirillum
## 2023-03-15 20:03:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Marvinbryantia
## 2023-03-15 20:03:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.f__Leptospiraceae.g__Leptonema
## 2023-03-15 20:03:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Christensenellaceae.g__Christensenella
## 2023-03-15 20:03:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Octadecabacter
## 2023-03-15 20:03:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Colwellia
## 2023-03-15 20:03:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Acidobacterium
## 2023-03-15 20:03:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Dinoroseobacter
## 2023-03-15 20:03:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Ewingella
## 2023-03-15 20:03:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Amoebophilaceae.g__Candidatus_Amoebophilus
## 2023-03-15 20:03:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Pelistega
## 2023-03-15 20:03:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Kushneria
## 2023-03-15 20:03:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Allochromatium
## 2023-03-15 20:03:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Simkaniaceae.g__Simkania
## 2023-03-15 20:03:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophaceae.g__Syntrophus
## 2023-03-15 20:03:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Waddliaceae.g__Waddlia
## 2023-03-15 20:03:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Austwickia
## 2023-03-15 20:03:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.g__Sobemovirus
## 2023-03-15 20:03:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Diaphorobacter
## 2023-03-15 20:03:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Propionispira
## 2023-03-15 20:03:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Starkeya
## 2023-03-15 20:03:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Anaerostipes
## 2023-03-15 20:03:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Chitinimonas
## 2023-03-15 20:03:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Halobacteroides
## 2023-03-15 20:03:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Gallaecimonas
## 2023-03-15 20:03:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bartonellaceae.g__Bartonella
## 2023-03-15 20:03:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Candidatus_Accumulibacter
## 2023-03-15 20:03:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Steroidobacter
## 2023-03-15 20:03:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Nostoc
## 2023-03-15 20:03:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Synergistes
## 2023-03-15 20:03:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Crenobacter
## 2023-03-15 20:03:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Histophilus
## 2023-03-15 20:03:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Dongia
## 2023-03-15 20:03:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Terrabacter
## 2023-03-15 20:03:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oleiphilaceae.g__Oleiphilus
## 2023-03-15 20:03:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zunongwangia
## 2023-03-15 20:03:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitiniphilus
## 2023-03-15 20:03:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Fibrobacteres.c__Fibrobacteria.o__Fibrobacterales.f__Fibrobacteraceae.g__Fibrobacter
## 2023-03-15 20:03:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Blastomonas
## 2023-03-15 20:03:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Melissococcus
## 2023-03-15 20:03:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.g__Phocaeicola
## 2023-03-15 20:03:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Acidobacteria.c__Solibacteres.o__Solibacterales.g__Bryobacter
## 2023-03-15 20:03:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Tremovirus
## 2023-03-15 20:03:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Asaia
## 2023-03-15 20:03:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sagittula
## 2023-03-15 20:03:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Nonlabens
## 2023-03-15 20:03:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Granulicella
## 2023-03-15 20:03:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Alphacoronavirus
## 2023-03-15 20:03:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Peptostreptococcus
## 2023-03-15 20:03:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Anaerovibrio
## 2023-03-15 20:03:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Ferrimicrobium
## 2023-03-15 20:03:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Anaerobacillus
## 2023-03-15 20:03:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Acidilobales.f__Caldisphaeraceae.g__Caldisphaera
## 2023-03-15 20:03:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Iridoviridae.g__Ranavirus
## 2023-03-15 20:03:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Thalassobaculum
## 2023-03-15 20:03:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Andreprevotia
## 2023-03-15 20:03:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Zymomonas
## 2023-03-15 20:03:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Prauserella
## 2023-03-15 20:03:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Propionibacteriaceae.g__Propionimicrobium
## 2023-03-15 20:03:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Geobacteraceae.g__Geopsychrobacter
## 2023-03-15 20:03:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Crocinitomicaceae.g__Fluviicola
## 2023-03-15 20:03:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Kineosporiales.f__Kineosporiaceae.g__Kineosporia
## 2023-03-15 20:03:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Microthrixaceae.g__Candidatus_Microthrix
## 2023-03-15 20:03:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Kluyvera
## 2023-03-15 20:03:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bradyrhizobiaceae.g__Oligotropha
## 2023-03-15 20:03:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Hahellaceae.g__Hahella
## 2023-03-15 20:03:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Microterricola
## 2023-03-15 20:03:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Micavibrio
## 2023-03-15 20:03:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Thermales.f__Thermaceae.g__Oceanithermus
## 2023-03-15 20:03:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Dicistroviridae.g__Cripavirus
## 2023-03-15 20:03:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Haloterrigena
## 2023-03-15 20:03:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Thermoplasmatales.f__Picrophilaceae.g__Picrophilus
## 2023-03-15 20:03:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Brucellaceae.g__Ochrobactrum
## 2023-03-15 20:03:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Rouxiella
## 2023-03-15 20:03:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylobacteriaceae.g__Microvirga
## 2023-03-15 20:03:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Verrucosispora
## 2023-03-15 20:03:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfarculales.f__Desulfarculaceae.g__Desulfarculus
## 2023-03-15 20:03:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Flaviviridae.g__Pestivirus
## 2023-03-15 20:03:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Eudoraea
## 2023-03-15 20:03:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Crocosphaera
## 2023-03-15 20:03:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfarculales.f__Desulfarculaceae.g__Dethiosulfatarculus
## 2023-03-15 20:03:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfosarcina
## 2023-03-15 20:03:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Beggiatoa
## 2023-03-15 20:03:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thalassobacter
## 2023-03-15 20:03:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Methylibium
## 2023-03-15 20:03:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Maritimibacter
## 2023-03-15 20:03:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Thermodesulfatator
## 2023-03-15 20:03:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Elusimicrobia.c__Elusimicrobia.o__Elusimicrobiales.f__Elusimicrobiaceae.g__Elusimicrobium
## 2023-03-15 20:03:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Leucothrix
## 2023-03-15 20:03:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Riemerella
## 2023-03-15 20:03:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Salegentibacter
## 2023-03-15 20:03:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Lentisphaerae.c__Lentisphaeria.o__Lentisphaerales.f__Lentisphaeraceae.g__Lentisphaera
## 2023-03-15 20:03:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chrysiogenetes.c__Chrysiogenetes.o__Chrysiogenales.f__Chrysiogenaceae.g__Desulfurispirillum
## 2023-03-15 20:03:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Aestuariibacter
## 2023-03-15 20:03:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobiaceae.g__Haloferula
## 2023-03-15 20:03:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Haemophilus
## 2023-03-15 20:03:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Anaerofustis
## 2023-03-15 20:03:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Pseudohongiella
## 2023-03-15 20:03:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Marseilleviridae.g__Marseillevirus
## 2023-03-15 20:03:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Betacoronavirus
## 2023-03-15 20:03:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Fabavirus
## 2023-03-15 20:03:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Salinimicrobium
## 2023-03-15 20:03:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ahrensia
## 2023-03-15 20:03:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Enterococcus
## 2023-03-15 20:03:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Halonatronum
## 2023-03-15 20:03:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Niabella
## 2023-03-15 20:03:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanobacteriaceae.g__Methanosphaera
## 2023-03-15 20:03:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Dokdonella
## 2023-03-15 20:03:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Enorma
## 2023-03-15 20:03:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Sediminicola
## 2023-03-15 20:03:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Xylella
## 2023-03-15 20:03:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Thermoproteales.f__Thermoproteaceae.g__Thermoproteus
## 2023-03-15 20:03:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Apibacter
## 2023-03-15 20:03:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Opitutales.f__Opitutaceae.g__Cephaloticoccus
## 2023-03-15 20:03:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Pasteurella
## 2023-03-15 20:03:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Oxalobacteraceae.g__Oxalobacter
## 2023-03-15 20:03:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Lactobacillaceae.g__Sharpea
## 2023-03-15 20:03:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Viridibacillus
## 2023-03-15 20:03:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Rudaea
## 2023-03-15 20:03:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.g__Thermorudis
## 2023-03-15 20:03:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Spounalikevirus
## 2023-03-15 20:03:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfovibrionaceae.g__Bilophila
## 2023-03-15 20:03:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Halorhodospira
## 2023-03-15 20:03:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Escherichia
## 2023-03-15 20:03:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Limnochordia.o__Limnochordales.f__Limnochordaceae.g__Limnochorda
## 2023-03-15 20:03:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Galbibacter
## 2023-03-15 20:03:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Hydrogenovibrio
## 2023-03-15 20:03:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Gordoniaceae.g__Gordonia
## 2023-03-15 20:03:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_III._Incertae_Sedis.g__Thermosediminibacter
## 2023-03-15 20:03:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Dermatophilus
## 2023-03-15 20:03:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Poxviridae.g__Leporipoxvirus
## 2023-03-15 20:03:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseivivax
## 2023-03-15 20:03:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Wenxinia
## 2023-03-15 20:03:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cardiobacteriales.f__Cardiobacteriaceae.g__Cardiobacterium
## 2023-03-15 20:03:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Mycoplasmatales.f__Mycoplasmataceae.g__Ureaplasma
## 2023-03-15 20:03:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Coprobacillus
## 2023-03-15 20:03:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfobulbus
## 2023-03-15 20:03:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Kamptonema
## 2023-03-15 20:03:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Sandarakinorhabdus
## 2023-03-15 20:03:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Oceanospirillum
## 2023-03-15 20:03:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Fodinicurvata
## 2023-03-15 20:03:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.g__Caedibacter
## 2023-03-15 20:03:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Aminomonas
## 2023-03-15 20:03:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Ponticaulis
## 2023-03-15 20:03:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Croceitalea
## 2023-03-15 20:03:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Ehrlichia
## 2023-03-15 20:03:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Paenirhodobacter
## 2023-03-15 20:03:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Ornithobacterium
## 2023-03-15 20:03:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Plantibacter
## 2023-03-15 20:03:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Oerskovia
## 2023-03-15 20:03:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Glycomycetales.f__Glycomycetaceae.g__Haloglycomyces
## 2023-03-15 20:03:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Entomoplasmatales.f__Entomoplasmataceae.g__Entomoplasma
## 2023-03-15 20:03:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Pelagibacterium
## 2023-03-15 20:03:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.g__Timonella
## 2023-03-15 20:03:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Aliagarivorans
## 2023-03-15 20:03:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.g__Exiguobacterium
## 2023-03-15 20:03:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Agrococcus
## 2023-03-15 20:03:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Shimia
## 2023-03-15 20:03:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Polyangiaceae.g__Sorangium
## 2023-03-15 20:03:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Faecalibaculum
## 2023-03-15 20:03:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomonas
## 2023-03-15 20:03:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Confluentimicrobium
## 2023-03-15 20:03:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Phaeospirillum
## 2023-03-15 20:03:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Actinocatenispora
## 2023-03-15 20:03:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Pseudolabrys
## 2023-03-15 20:03:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Eggerthella
## 2023-03-15 20:03:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Cesiribacter
## 2023-03-15 20:03:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Methyloferula
## 2023-03-15 20:03:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Campylobacteraceae.g__Campylobacter
## 2023-03-15 20:03:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Oleiagrimonas
## 2023-03-15 20:03:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Thermales.f__Thermaceae.g__Marinithermus
## 2023-03-15 20:03:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinomycetospora
## 2023-03-15 20:03:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Acetobacter
## 2023-03-15 20:03:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Croceibacter
## 2023-03-15 20:03:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Flaviflexus
## 2023-03-15 20:03:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Salinarchaeum
## 2023-03-15 20:03:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Chania
## 2023-03-15 20:03:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Acidobacteria.c__Solibacteres.o__Solibacterales.f__Solibacteraceae.g__Candidatus_Solibacter
## 2023-03-15 20:03:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatitalea
## 2023-03-15 20:03:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Oceanicaulis
## 2023-03-15 20:03:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Filomicrobium
## 2023-03-15 20:03:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Epulopiscium
## 2023-03-15 20:03:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Actinobaculum
## 2023-03-15 20:03:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Arcanobacterium
## 2023-03-15 20:03:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Mobilicoccus
## 2023-03-15 20:03:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Lewinella
## 2023-03-15 20:03:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Leifsonia
## 2023-03-15 20:03:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Gulosibacter
## 2023-03-15 20:03:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Skermanella
## 2023-03-15 20:03:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Ornatilinea
## 2023-03-15 20:03:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Weeksella
## 2023-03-15 20:03:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Thioalkalimicrobium
## 2023-03-15 20:03:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Leptotrichiaceae.g__Sebaldella
## 2023-03-15 20:03:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Flavihumibacter
## 2023-03-15 20:03:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Stigonematales.g__Hapalosiphon
## 2023-03-15 20:03:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sneathiellales.f__Sneathiellaceae.g__Sneathiella
## 2023-03-15 20:03:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Neorickettsia
## 2023-03-15 20:03:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Oceanibaculum
## 2023-03-15 20:03:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Bellilinea
## 2023-03-15 20:03:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Microscilla
## 2023-03-15 20:03:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Oscillospiraceae.g__Oscillibacter
## 2023-03-15 20:03:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Caliciviridae.g__Vesivirus
## 2023-03-15 20:03:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Echinicola
## 2023-03-15 20:03:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Thermonemataceae.g__Thermonema
## 2023-03-15 20:03:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Thermanaerovibrio
## 2023-03-15 20:03:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Ectothiorhodospira
## 2023-03-15 20:03:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophaceae.g__Desulfomonile
## 2023-03-15 20:03:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Hahellaceae.g__Zooshikella
## 2023-03-15 20:03:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Virgaviridae.g__Pomovirus
## 2023-03-15 20:03:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Kibdelosporangium
## 2023-03-15 20:03:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Candidatus_Desulforudis
## 2023-03-15 20:03:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Bdellovibrionales.f__Bacteriovoracaceae.g__Bacteriovorax
## 2023-03-15 20:03:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Novispirillum
## 2023-03-15 20:03:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Dehalococcoidia.g__Dehalogenimonas
## 2023-03-15 20:03:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitinilyticum
## 2023-03-15 20:03:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Comamonas
## 2023-03-15 20:03:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Planktomarina
## 2023-03-15 20:03:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zhouia
## 2023-03-15 20:03:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Anaerolinea
## 2023-03-15 20:03:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Magnetococcales.f__Magnetococcaceae.g__Magnetococcus
## 2023-03-15 20:03:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Mycoplasmatales.f__Mycoplasmataceae.g__Mycoplasma
## 2023-03-15 20:03:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Kozakia
## 2023-03-15 20:03:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Citromicrobium
## 2023-03-15 20:03:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Nonomuraea
## 2023-03-15 20:03:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Catelliglobosispora
## 2023-03-15 20:03:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Magnetospira
## 2023-03-15 20:03:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Phycodnaviridae.g__Prymnesiovirus
## 2023-03-15 20:03:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylobacteriaceae.g__Meganema
## 2023-03-15 20:03:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Aminobacterium
## 2023-03-15 20:03:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Alkaliflexus
## 2023-03-15 20:03:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Myroides
## 2023-03-15 20:03:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Holosporaceae.g__Holospora
## 2023-03-15 20:03:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Thermococcus
## 2023-03-15 20:03:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Halieaceae.g__Luminiphilus
## 2023-03-15 20:03:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Gimesia
## 2023-03-15 20:03:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Knoellia
## 2023-03-15 20:03:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Brachyspirales.f__Brachyspiraceae.g__Brachyspira
## 2023-03-15 20:03:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Spirosoma
## 2023-03-15 20:03:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Sediminibacterium
## 2023-03-15 20:03:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Desulfurococcaceae.g__Ignicoccus
## 2023-03-15 20:03:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Tenacibaculum
## 2023-03-15 20:03:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Terracoccus
## 2023-03-15 20:03:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Senegalimassilia
## 2023-03-15 20:03:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Polycyclovorans
## 2023-03-15 20:03:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Silvibacterium
## 2023-03-15 20:03:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Sporolactobacillaceae.g__Tuberibacillus
## 2023-03-15 20:03:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Nakamurellales.f__Nakamurellaceae.g__Nakamurella
## 2023-03-15 20:03:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Veillonellales.f__Veillonellaceae.g__Megasphaera
## 2023-03-15 20:03:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Saccharomonospora
## 2023-03-15 20:03:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Kineosporiales.f__Kineosporiaceae.g__Angustibacter
## 2023-03-15 20:03:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Thermoanaerobacter
## 2023-03-15 20:03:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Rhodospirillum
## 2023-03-15 20:03:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Parvimonas
## 2023-03-15 20:03:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Ferriphaselus
## 2023-03-15 20:03:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Marinovum
## 2023-03-15 20:03:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Rubinisphaera
## 2023-03-15 20:03:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Arcticibacter
## 2023-03-15 20:03:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Glycomycetales.f__Glycomycetaceae.g__Glycomyces
## 2023-03-15 20:03:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cardiobacteriales.f__Cardiobacteriaceae.g__Dichelobacter
## 2023-03-15 20:03:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Verrucomicrobia.o__Methylacidiphilales.f__Methylacidiphilaceae.g__Methylacidiphilum
## 2023-03-15 20:03:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Thermomonas
## 2023-03-15 20:03:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Roseivirga
## 2023-03-15 20:03:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Vitellibacter
## 2023-03-15 20:03:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sulfitobacter
## 2023-03-15 20:03:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Marinilabilia
## 2023-03-15 20:03:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Cyanobium
## 2023-03-15 20:03:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Emticicia
## 2023-03-15 20:03:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Vulgatibacteraceae.g__Vulgatibacter
## 2023-03-15 20:03:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Nesiotobacter
## 2023-03-15 20:03:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Blautia
## 2023-03-15 20:03:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Methylocella
## 2023-03-15 20:03:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Haliscomenobacter
## 2023-03-15 20:03:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Candidatus_Korarchaeota.g__Candidatus_Korarchaeum
## 2023-03-15 20:03:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Gordonibacter
## 2023-03-15 20:03:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Rikenellaceae.g__Mucinivorans
## 2023-03-15 20:03:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Polyangiaceae.g__Chondromyces
## 2023-03-15 20:03:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Puniceicoccales.f__Puniceicoccaceae.g__Coraliomargarita
## 2023-03-15 20:03:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Polynucleobacter
## 2023-03-15 20:03:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Hirschia
## 2023-03-15 20:03:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Segetibacter
## 2023-03-15 20:03:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Microbispora
## 2023-03-15 20:03:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Polyomaviridae.g__Polyomavirus
## 2023-03-15 20:03:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Caldicoprobacteraceae.g__Caldicoprobacter
## 2023-03-15 20:03:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Maribius
## 2023-03-15 20:03:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Planctomyces
## 2023-03-15 20:03:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Roseburia
## 2023-03-15 20:03:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Catenulisporales.f__Actinospicaceae.g__Actinospica
## 2023-03-15 20:03:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Hamadaea
## 2023-03-15 20:03:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Desulfurispora
## 2023-03-15 20:03:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Adenoviridae.g__Mastadenovirus
## 2023-03-15 20:03:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Kiloniellales.f__Kiloniellaceae.g__Kiloniella
## 2023-03-15 20:03:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Propionibacteriaceae.g__Granulicoccus
## 2023-03-15 20:03:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Saccharibacillus
## 2023-03-15 20:03:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Defluviimonas
## 2023-03-15 20:03:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Methylopila
## 2023-03-15 20:03:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Candidatus_Profftella
## 2023-03-15 20:03:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Desulfurobacteriales.f__Desulfurobacteriaceae.g__Desulfurobacterium
## 2023-03-15 20:03:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.o__Sphaerobacterales.f__Sphaerobacteraceae.g__Sphaerobacter
## 2023-03-15 20:03:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Haematospirillum
## 2023-03-15 20:03:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Chelatococcus
## 2023-03-15 20:03:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Tanticharoenia
## 2023-03-15 20:03:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Thiorhodospira
## 2023-03-15 20:03:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Astroviridae.g__Mamastrovirus
## 2023-03-15 20:03:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Rhodoluna
## 2023-03-15 20:03:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Orenia
## 2023-03-15 20:03:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Desulfuromonadaceae.g__Pelobacter
## 2023-03-15 20:03:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Allokutzneria
## 2023-03-15 20:03:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhizobiaceae.g__Neorhizobium
## 2023-03-15 20:03:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pantoea
## 2023-03-15 20:03:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Johnsonella
## 2023-03-15 20:03:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Catellicoccus
## 2023-03-15 20:03:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Flammeovirga
## 2023-03-15 20:03:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Belnapia
## 2023-03-15 20:03:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Dictyoglomi.c__Dictyoglomia.o__Dictyoglomales.f__Dictyoglomaceae.g__Dictyoglomus
## 2023-03-15 20:03:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Aquimarina
## 2023-03-15 20:03:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobia_subdivision_3.g__Pedosphaera
## 2023-03-15 20:03:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Planomonospora
## 2023-03-15 20:03:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Caulobacterales.f__Caulobacteraceae.g__Phenylobacterium
## 2023-03-15 20:03:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Deinococcales.f__Trueperaceae.g__Truepera
## 2023-03-15 20:03:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Borreliaceae.g__Borrelia
## 2023-03-15 20:03:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.g__Tropheryma
## 2023-03-15 20:03:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Elusimicrobia.c__Endomicrobia.o__Endomicrobiales.f__Endomicrobiaceae.g__Endomicrobium
## 2023-03-15 20:03:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Paludibacterium
## 2023-03-15 20:03:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermabacteraceae.g__Dermabacter
## 2023-03-15 20:03:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Dysgonomonas
## 2023-03-15 20:03:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Neptunomonas
## 2023-03-15 20:03:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Spiribacter
## 2023-03-15 20:03:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Herpesvirales.f__Alloherpesviridae.g__Batrachovirus
## 2023-03-15 20:03:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prevotellaceae.g__Prevotella
## 2023-03-15 20:03:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Solibacillus
## 2023-03-15 20:03:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methermicoccaceae.g__Methermicoccus
## 2023-03-15 20:03:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Rubritaleaceae.g__Rubritalea
## 2023-03-15 20:03:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Sciscionella
## 2023-03-15 20:03:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Acetohalobium
## 2023-03-15 20:03:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Odoribacteraceae.g__Odoribacter
## 2023-03-15 20:03:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Arenibacter
## 2023-03-15 20:03:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Microbacterium
## 2023-03-15 20:03:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Fibrella
## 2023-03-15 20:03:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Maribacter
## 2023-03-15 20:03:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Mardivirus
## 2023-03-15 20:03:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Paracaedibacteraceae.g__Candidatus_Paracaedibacter
## 2023-03-15 20:03:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Agreia
## 2023-03-15 20:03:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Faecalicoccus
## 2023-03-15 20:03:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Orbales.f__Orbaceae.g__Frischella
## 2023-03-15 20:03:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulforegula
## 2023-03-15 20:03:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Frankiales.f__Sporichthyaceae.g__Sporichthya
## 2023-03-15 20:03:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Thermobrachium
## 2023-03-15 20:03:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Ilumatobacter
## 2023-03-15 20:03:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Paeniclostridium
## 2023-03-15 20:03:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Xylophilus
## 2023-03-15 20:03:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Hymenobacter
## 2023-03-15 20:03:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Bifidobacteriales.f__Bifidobacteriaceae.g__Scardovia
## 2023-03-15 20:03:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Erysipelatoclostridium
## 2023-03-15 20:03:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Arsenicicoccus
## 2023-03-15 20:03:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Aquincola
## 2023-03-15 20:03:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Olleya
## 2023-03-15 20:03:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Xanthobacter
## 2023-03-15 20:03:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Staphylococcaceae.g__Jeotgalicoccus
## 2023-03-15 20:03:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Partitiviridae.g__Betapartitivirus
## 2023-03-15 20:03:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Methylophaga
## 2023-03-15 20:03:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Inquilinus
## 2023-03-15 20:03:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Marivirga
## 2023-03-15 20:03:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Thermoactinomycetaceae.g__Thermoactinomyces
## 2023-03-15 20:03:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Papillomaviridae.g__Lambdapapillomavirus
## 2023-03-15 20:03:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Loktanella
## 2023-03-15 20:03:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Mangrovimonas
## 2023-03-15 20:03:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Sutterellaceae.g__Sutterella
## 2023-03-15 20:03:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Enteractinococcus
## 2023-03-15 20:03:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halorhabdus
## 2023-03-15 20:03:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.g__Candidatus_Hepatobacter
## 2023-03-15 20:03:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Kinetoplastibacterium
## 2023-03-15 20:03:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Mitsuokella
## 2023-03-15 20:03:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanothermaceae.g__Methanothermus
## 2023-03-15 20:03:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Lentimicrobiaceae.g__Lentimicrobium
## 2023-03-15 20:03:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Henriciella
## 2023-03-15 20:03:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatibacillum
## 2023-03-15 20:03:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Geofilum
## 2023-03-15 20:03:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Flavonifractor
## 2023-03-15 20:03:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thioclava
## 2023-03-15 20:03:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Rubellimicrobium
## 2023-03-15 20:03:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Staphylococcaceae.g__Macrococcus
## 2023-03-15 20:03:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Symbiobacteriaceae.g__Symbiobacterium
## 2023-03-15 20:03:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Fervidobacteriaceae.g__Thermosipho
## 2023-03-15 20:03:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Rhodothermaeota.c__Balneolia.o__Balneolales.f__Balneolaceae.g__Gracilimonas
## 2023-03-15 20:03:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Leuconostocaceae.g__Weissella
## 2023-03-15 20:03:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Falsirhodobacter
## 2023-03-15 20:03:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Methanomassiliicoccales.f__Methanomassiliicoccaceae.g__Methanomassiliicoccus
## 2023-03-15 20:03:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Muricauda
## 2023-03-15 20:03:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Porticoccaceae.g__Porticoccus
## 2023-03-15 20:03:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Petrotogales.g__Marinitoga
## 2023-03-15 20:03:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ruegeria
## 2023-03-15 20:03:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Flexithrix
## 2023-03-15 20:03:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Succinivibrionaceae.g__Succinivibrio
## 2023-03-15 20:03:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halapricum
## 2023-03-15 20:03:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Brackiella
## 2023-03-15 20:03:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Rufibacter
## 2023-03-15 20:03:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Candidatus_Puniceispirillum
## 2023-03-15 20:03:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Candidatus_Aquiluna
## 2023-03-15 20:03:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thioflavicoccus
## 2023-03-15 20:03:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Salimicrobium
## 2023-03-15 20:03:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfovermiculus
## 2023-03-15 20:03:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Eikenella
## 2023-03-15 20:03:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Amantichitinum
## 2023-03-15 20:03:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Asanoa
## 2023-03-15 20:03:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Amorphus
## 2023-03-15 20:03:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Pseudomonadaceae.g__Oblitimonas
## 2023-03-15 20:03:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermacoccaceae.g__Luteipulveratus
## 2023-03-15 20:03:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Robinsoniella
## 2023-03-15 20:03:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Hydrogenivirga
## 2023-03-15 20:03:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Sandaracinaceae.g__Sandaracinus
## 2023-03-15 20:03:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Pseudobacteroides
## 2023-03-15 20:03:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Alcaligenes
## 2023-03-15 20:03:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Oribacterium
## 2023-03-15 20:03:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Pyrodictiaceae.g__Pyrolobus
## 2023-03-15 20:03:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pluralibacter
## 2023-03-15 20:03:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Criblamydiaceae.g__Criblamydia
## 2023-03-15 20:03:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Nitrosomonadales.f__Nitrosomonadaceae.g__Nitrosospira
## 2023-03-15 20:03:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanobacteriaceae.g__Methanobrevibacter
## 2023-03-15 20:03:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Advenella
## 2023-03-15 20:03:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Slackia
## 2023-03-15 20:03:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Nitrospirae.c__Nitrospira.o__Nitrospirales.f__Nitrospiraceae.g__Candidatus_Magnetobacterium
## 2023-03-15 20:03:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Poxviridae.g__Molluscipoxvirus
## 2023-03-15 20:03:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Rhodobacter
## 2023-03-15 20:03:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Opitutales.f__Opitutaceae.g__Opitutus
## 2023-03-15 20:03:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Candidatus_Soleaferrea
## 2023-03-15 20:03:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Muribacter
## 2023-03-15 20:03:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.g__Anaerosporomusa
## 2023-03-15 20:03:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Candidatus_Arthromitus
## 2023-03-15 20:03:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Phycodnaviridae.g__Prasinovirus
## 2023-03-15 20:03:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Pseudarthrobacter
## 2023-03-15 20:03:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thalassobius
## 2023-03-15 20:03:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.g__Higrevirus
## 2023-03-15 20:03:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Schleiferiaceae.g__Schleiferia
## 2023-03-15 20:03:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Adhaeribacter
## 2023-03-15 20:03:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Salivirus
## 2023-03-15 20:03:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Blastochloris
## 2023-03-15 20:03:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylocaldum
## 2023-03-15 20:03:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Lactobacillaceae.g__Lactobacillus
## 2023-03-15 20:03:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Pandoraea
## 2023-03-15 20:03:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Mizugakiibacter
## 2023-03-15 20:03:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Thermocrispum
## 2023-03-15 20:03:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfomicrobiaceae.g__Desulfomicrobium
## 2023-03-15 20:03:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Gemmatimonadetes.c__Gemmatimonadetes.o__Gemmatimonadales.f__Gemmatimonadaceae.g__Gemmatirosa
## 2023-03-15 20:03:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Circoviridae.g__Circovirus
## 2023-03-15 20:03:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Pseudopedobacter
## 2023-03-15 20:03:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Buttiauxella
## 2023-03-15 20:03:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Maricaulis
## 2023-03-15 20:03:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Tepidicaulis
## 2023-03-15 20:03:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Caldiserica.c__Caldisericia.o__Caldisericales.f__Caldisericaceae.g__Caldisericum
## 2023-03-15 20:03:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylosarcina
## 2023-03-15 20:03:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Anaerobaculum
## 2023-03-15 20:03:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Kosakonia
## 2023-03-15 20:03:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Pirellula
## 2023-03-15 20:03:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Aurantimonadaceae.g__Martelella
## 2023-03-15 20:03:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Dicistroviridae.g__Aparavirus
## 2023-03-15 20:04:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Cellulosimicrobium
## 2023-03-15 20:04:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Helcococcus
## 2023-03-15 20:04:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Cycloclasticus
## 2023-03-15 20:04:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Promicromonospora
## 2023-03-15 20:04:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophobacteraceae.g__Syntrophobacter
## 2023-03-15 20:04:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Halothiobacillaceae.g__Halothiobacillus
## 2023-03-15 20:04:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Thermomonosporaceae.g__Spirillospora
## 2023-03-15 20:04:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Pseudoflavonifractor
## 2023-03-15 20:04:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhizobiaceae.g__Agrobacterium
## 2023-03-15 20:04:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Lechevalieria
## 2023-03-15 20:04:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Acidobacteria.c__Blastocatellia.g__Chloracidobacterium
## 2023-03-15 20:04:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.g__Reyranella
## 2023-03-15 20:04:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseobacter
## 2023-03-15 20:04:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Aneurinibacillus
## 2023-03-15 20:04:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Bafinivirus
## 2023-03-15 20:04:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Papillomaviridae.g__Omegapapillomavirus
## 2023-03-15 20:04:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Eubacterium
## 2023-03-15 20:04:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Phycicoccus
## 2023-03-15 20:04:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Celeribacter
## 2023-03-15 20:04:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Enterobacter
## 2023-03-15 20:04:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Paucibacter
## 2023-03-15 20:04:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Gracilibacillus
## 2023-03-15 20:04:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Candidatus_Cloacimonetes.g__Candidatus_Cloacimonas
## 2023-03-15 20:04:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Tannerella
## 2023-03-15 20:04:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Tatumella
## 2023-03-15 20:04:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Xenococcus
## 2023-03-15 20:04:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Prochlorales.f__Prochlorococcaceae.g__Prochlorococcus
## 2023-03-15 20:04:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Segniliparaceae.g__Segniliparus
## 2023-03-15 20:04:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Sporomusaceae.g__Anaeromusa
## 2023-03-15 20:04:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Veillonellales.f__Veillonellaceae.g__Veillonella
## 2023-03-15 20:04:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Prosthecomicrobium
## 2023-03-15 20:04:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseovarius
## 2023-03-15 20:04:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Petrotogales.g__Defluviitoga
## 2023-03-15 20:04:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.f__Leptospiraceae.g__Turneriella
## 2023-03-15 20:04:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Streptosporangium
## 2023-03-15 20:04:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Zetaproteobacteria.o__Mariprofundales.f__Mariprofundaceae.g__Mariprofundus
## 2023-03-15 20:04:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfurellales.f__Desulfurellaceae.g__Desulfurella
## 2023-03-15 20:04:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halorubrum
## 2023-03-15 20:04:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Edwardsiella
## 2023-03-15 20:04:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Pontibacter
## 2023-03-15 20:04:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Cryptobacterium
## 2023-03-15 20:04:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Salinisphaerales.f__Salinisphaeraceae.g__Salinisphaera
## 2023-03-15 20:04:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.g__Lawsonella
## 2023-03-15 20:04:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halosimplex
## 2023-03-15 20:04:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Ventosimonadaceae.g__Ventosimonas
## 2023-03-15 20:04:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Regiella
## 2023-03-15 20:04:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Bibersteinia
## 2023-03-15 20:04:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Veillonellales.f__Veillonellaceae.g__Dialister
## 2023-03-15 20:04:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Shigella
## 2023-03-15 20:04:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Pusillimonas
## 2023-03-15 20:04:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Nafulsella
## 2023-03-15 20:04:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Thermosulfurimonas
## 2023-03-15 20:04:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Erythrobacteraceae.g__Porphyrobacter
## 2023-03-15 20:04:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Lampropedia
## 2023-03-15 20:04:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Cellulosilyticum
## 2023-03-15 20:04:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Pleomorphomonas
## 2023-03-15 20:04:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Kineosphaera
## 2023-03-15 20:04:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Anaplasma
## 2023-03-15 20:04:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Actinotalea
## 2023-03-15 20:04:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Streptococcaceae.g__Streptococcus
## 2023-03-15 20:04:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Leptothrix
## 2023-03-15 20:04:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Phycodnaviridae.g__Chlorovirus
## 2023-03-15 20:04:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Mobiluncus
## 2023-03-15 20:04:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Chlorobaculum
## 2023-03-15 20:04:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiocapsa
## 2023-03-15 20:04:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Lachnoanaerobaculum
## 2023-03-15 20:04:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Acidaminococcales.f__Acidaminococcaceae.g__Succinispira
## 2023-03-15 20:04:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Helicobacter
## 2023-03-15 20:04:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Labrenzia
## 2023-03-15 20:04:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophaceae.g__Desulfobacca
## 2023-03-15 20:04:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Terrimonas
## 2023-03-15 20:04:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Dehalococcoidia.o__Dehalococcoidales.f__Dehalococcoidaceae.g__Dehalococcoides
## 2023-03-15 20:04:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Vagococcus
## 2023-03-15 20:04:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Aerococcaceae.g__Abiotrophia
## 2023-03-15 20:04:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Lachnoclostridium
## 2023-03-15 20:04:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Trueperella
## 2023-03-15 20:04:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiorhodovibrio
## 2023-03-15 20:04:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Caldimonas
## 2023-03-15 20:04:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Neisseria
## 2023-03-15 20:04:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Geodermatophilales.f__Geodermatophilaceae.g__Blastococcus
## 2023-03-15 20:04:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Pseudonocardia
## 2023-03-15 20:04:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfotalea
## 2023-03-15 20:04:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Atopobiaceae.g__Atopobium
## 2023-03-15 20:04:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Pimelobacter
## 2023-03-15 20:04:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Kofleriaceae.g__Haliangium
## 2023-03-15 20:04:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Lutibaculum
## 2023-03-15 20:04:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Sinomonas
## 2023-03-15 20:04:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Roseateles
## 2023-03-15 20:04:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Alcanivoracaceae.g__Kangiella
## 2023-03-15 20:04:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Thermobacillus
## 2023-03-15 20:04:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Micrococcus
## 2023-03-15 20:04:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Candidatus_Endolissoclinum
## 2023-03-15 20:04:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Nannocystaceae.g__Plesiocystis
## 2023-03-15 20:04:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Poxviridae.g__Betaentomopoxvirus
## 2023-03-15 20:04:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Thiomicrospira
## 2023-03-15 20:04:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Stomatobaculum
## 2023-03-15 20:04:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Desulfurococcaceae.g__Staphylothermus
## 2023-03-15 20:04:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Hyphomicrobium
## 2023-03-15 20:04:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Nesterenkonia
## 2023-03-15 20:04:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.g__Fangia
## 2023-03-15 20:04:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Rickettsiaceae.g__Orientia
## 2023-03-15 20:04:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Thermotogaceae.g__Thermotoga
## 2023-03-15 20:04:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Nitrospirae.c__Nitrospira.o__Nitrospirales.f__Nitrospiraceae.g__Leptospirillum
## 2023-03-15 20:04:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Sodalis
## 2023-03-15 20:04:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Varibaculum
## 2023-03-15 20:04:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Carnobacteriaceae.g__Allofustis
## 2023-03-15 20:04:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Mageeibacillus
## 2023-03-15 20:04:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Acidihalobacter
## 2023-03-15 20:04:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfovibrionaceae.g__Desulfocurvus
## 2023-03-15 20:04:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Staphylococcaceae.g__Salinicoccus
## 2023-03-15 20:04:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Nitratireductor
## 2023-03-15 20:04:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Leuconostocaceae.g__Fructobacillus
## 2023-03-15 20:04:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Finegoldia
## 2023-03-15 20:04:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Syntrophomonadaceae.g__Syntrophomonas
## 2023-03-15 20:04:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Calditerrivibrio
## 2023-03-15 20:04:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Thalassospira
## 2023-03-15 20:04:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Azohydromonas
## 2023-03-15 20:04:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Delftia
## 2023-03-15 20:04:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Citrobacter
## 2023-03-15 20:04:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prolixibacteraceae.g__Draconibacterium
## 2023-03-15 20:04:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Rhodonellum
## 2023-03-15 20:04:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Tymovirales.f__Tymoviridae.g__Tymovirus
## 2023-03-15 20:04:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prolixibacteraceae.g__Sunxiuqinia
## 2023-03-15 20:04:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.g__Elioraea
## 2023-03-15 20:04:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Caldalkalibacillus
## 2023-03-15 20:04:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Nitriliruptoria.o__Nitriliruptorales.f__Nitriliruptoraceae.g__Nitriliruptor
## 2023-03-15 20:04:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Varicellovirus
## 2023-03-15 20:04:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Wenzhouxiangellaceae.g__Wenzhouxiangella
## 2023-03-15 20:04:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Propionicicella
## 2023-03-15 20:04:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Morganella
## 2023-03-15 20:04:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Carnimonas
## 2023-03-15 20:04:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Sicinivirus
## 2023-03-15 20:04:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_III._Incertae_Sedis.g__Thermoanaerobacterium
## 2023-03-15 20:04:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Aerococcaceae.g__Facklamia
## 2023-03-15 20:04:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Intestinibacter
## 2023-03-15 20:04:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Retroviridae.g__Betaretrovirus
## 2023-03-15 20:04:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Caenimonas
## 2023-03-15 20:04:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Cylindrospermopsis
maaslin_likely_group_likely <- function_Maaslin2(df_ACC_filter_likely_Voom_SNM, "Likely_combined", "Temp/likely_group_likely")
## [1] "Warning: Deleting existing log file: Temp/likely_group_likely/maaslin2.log"
## 2023-03-15 20:04:18 INFO::Writing function arguments to log file
## 2023-03-15 20:04:18 INFO::Verifying options selected are valid
## 2023-03-15 20:04:18 INFO::Determining format of input files
## 2023-03-15 20:04:18 INFO::Input format is data samples as rows and metadata samples as rows
## 2023-03-15 20:04:18 INFO::Formula for random effects: expr ~ (1 | SEX) + (1 | Ethnicity_Race) + (1 | AGE) + (1 | Neoplasm_Status) + (1 | Clinical_Status_3_Mo_Post.Op) + (1 | Surgical_margin) + (1 | ATYPICAL_MITOTIC_FIGURES)
## 2023-03-15 20:04:18 INFO::Formula for fixed effects: expr ~  Likely_combined
## 2023-03-15 20:04:18 INFO::Filter data based on min abundance and min prevalence
## 2023-03-15 20:04:18 INFO::Total samples in data: 77
## 2023-03-15 20:04:18 INFO::Min samples required with min abundance for a feature not to be filtered: 0.000000
## 2023-03-15 20:04:18 INFO::Total filtered features: 71
## 2023-03-15 20:04:18 INFO::Filtered feature names from abundance and prevalence filtering: k__Viruses.f__Baculoviridae.g__Deltabaculovirus, k__Viruses.o__Caudovirales.f__Myoviridae.g__I3likevirus, k__Viruses.f__Anelloviridae.g__Gammatorquevirus, k__Viruses.g__Tenuivirus, k__Viruses.f__Poxviridae.g__Capripoxvirus, k__Viruses.o__Mononegavirales.f__Nyamiviridae.g__Nyavirus, k__Viruses.g__Emaravirus, k__Viruses.o__Picornavirales.f__Secoviridae.g__Waikavirus, k__Viruses.f__Poxviridae.g__Yatapoxvirus, k__Viruses.f__Poxviridae.g__Orthopoxvirus, k__Viruses.o__Caudovirales.f__Siphoviridae.g__L5likevirus, k__Viruses.f__Hytrosaviridae.g__Muscavirus, k__Viruses.f__Closteroviridae.g__Crinivirus, k__Viruses.o__Caudovirales.f__Myoviridae.g__Cp220likevirus, k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Fervidicella, k__Bacteria.p__Acidobacteria.c__Holophagae.o__Holophagales.f__Holophagaceae.g__Geothrix, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Cedecea, k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Catabacteriaceae.g__Catabacter, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Coxiellaceae.g__Diplorickettsia, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Tachikawaea, k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Rikenellaceae.g__Rikenella, k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Caminibacter, k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Belliella, k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinosynnema, k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natronobacterium, k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Bifidobacteriales.f__Bifidobacteriaceae.g__Alloscardovia, k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Fusobacteriaceae.g__Cetobacterium, k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Leptotrichiaceae.g__Streptobacillus, k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanolacinia, k__Archaea.p__Euryarchaeota.c__Methanococci.o__Methanococcales.f__Methanocaldococcaceae.g__Methanotorris, k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Halocynthiibacter, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Pseudacidovorax, k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudophaeobacter, k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Hydrogenothermaceae.g__Persephonella, k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pelagibaca, k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Flaviramulus, k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.g__Candidatus_Babela, k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiales_Family_XIII._Incertae_Sedis.g__Anaerovorax, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Candidatus_Evansia, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Arenimonas, k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halomicrobium, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Alkalilimnicola, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Brenneria, k__Bacteria.p__Chrysiogenetes.c__Chrysiogenetes.o__Chrysiogenales.f__Chrysiogenaceae.g__Chrysiogenes, k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Gottschalkia, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomicrobium, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Xenophilus, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Moellerella, k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Microchaetaceae.g__Microchaete, k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Oxobacter, k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Lebetimonas, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Morococcus, k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Ulvibacter, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Rubrivivax, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Marinagarivorans, k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Solitalea, k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Thermoplasmatales.f__Ferroplasmaceae.g__Ferroplasma, k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanoregulaceae.g__Methanosphaerula, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Dechloromonas, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Azovibrio, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Hylemonella, k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Sulfuricurvum, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Leminorella, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Sphaerotilus, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Halieaceae.g__Congregibacter, k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Psychrobacillus, k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Microtetraspora, k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Odoribacteraceae.g__Butyricimonas, k__Bacteria.p__Chloroflexi.c__Ardenticatenia.o__Ardenticatenales.f__Ardenticatenaceae.g__Ardenticatena, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Thauera, k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Paucisalibacillus
## 2023-03-15 20:04:18 INFO::Total filtered features with variance filtering: 0
## 2023-03-15 20:04:18 INFO::Filtered feature names from variance filtering:
## 2023-03-15 20:04:18 INFO::Running selected normalization method: NONE
## 2023-03-15 20:04:18 INFO::Applying z-score to standardize continuous metadata
## 2023-03-15 20:04:18 INFO::Running selected transform method: NONE
## 2023-03-15 20:04:18 INFO::Running selected analysis method: LM
## 2023-03-15 20:04:18 INFO::Creating cluster of 6 R processes
## 2023-03-15 20:04:48 INFO::Counting total values for each feature
## 2023-03-15 20:04:48 WARNING::Deleting existing residuals file: Temp/likely_group_likely/residuals.rds
## 2023-03-15 20:04:48 INFO::Writing residuals to file Temp/likely_group_likely/residuals.rds
## 2023-03-15 20:04:48 WARNING::Deleting existing fitted file: Temp/likely_group_likely/fitted.rds
## 2023-03-15 20:04:48 INFO::Writing fitted values to file Temp/likely_group_likely/fitted.rds
## 2023-03-15 20:04:48 WARNING::Deleting existing ranef file: Temp/likely_group_likely/ranef.rds
## 2023-03-15 20:04:48 INFO::Writing extracted random effects to file Temp/likely_group_likely/ranef.rds
## 2023-03-15 20:04:48 INFO::Writing all results to file (ordered by increasing q-values): Temp/likely_group_likely/all_results.tsv
## 2023-03-15 20:04:48 INFO::Writing the significant results (those which are less than or equal to the threshold of 0.250000 ) to file (ordered by increasing q-values): Temp/likely_group_likely/significant_results.tsv
## 2023-03-15 20:04:48 INFO::Writing heatmap of significant results to file: Temp/likely_group_likely/heatmap.pdf
## Warning in xtfrm.data.frame(x): cannot xtfrm data frames
## [1] "There is not enough metadata in the associations to create a heatmap plot. Please review the associations in text output file."
## 2023-03-15 20:04:48 INFO::Writing association plots (one for each significant association) to output folder: Temp/likely_group_likely
## 2023-03-15 20:04:48 INFO::Plotting associations from most to least significant, grouped by metadata
## 2023-03-15 20:04:48 INFO::Plotting data for metadata number 1, Likely_combined
## 2023-03-15 20:04:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Sfi1unalikevirus
## 2023-03-15 20:04:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Poxviridae.g__Parapoxvirus
## 2023-03-15 20:04:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Bicaudaviridae.g__Bicaudavirus
## 2023-03-15 20:04:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Circoviridae.g__Gyrovirus
## 2023-03-15 20:04:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Caulimoviridae.g__Badnavirus
## 2023-03-15 20:04:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Bcep22likevirus
## 2023-03-15 20:04:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Ligamenvirales.f__Lipothrixviridae.g__Deltalipothrixvirus
## 2023-03-15 20:04:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Poxviridae.g__Cervidpoxvirus
## 2023-03-15 20:04:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Papillomaviridae.g__Mupapillomavirus
## 2023-03-15 20:04:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Lambdalikevirus
## 2023-03-15 20:04:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Papillomaviridae.g__Phipapillomavirus
## 2023-03-15 20:04:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Anelloviridae.g__Alphatorquevirus
## 2023-03-15 20:04:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.g__Pithovirus
## 2023-03-15 20:04:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Barnyardlikevirus
## 2023-03-15 20:04:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Reoviridae.g__Cypovirus
## 2023-03-15 20:04:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Iltovirus
## 2023-03-15 20:04:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Closteroviridae.g__Closterovirus
## 2023-03-15 20:04:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Viunalikevirus
## 2023-03-15 20:04:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Phicbklikevirus
## 2023-03-15 20:04:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Fuselloviridae.g__Alphafusellovirus
## 2023-03-15 20:04:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Retroviridae.g__Lentivirus
## 2023-03-15 20:04:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Luteoviridae.g__Polerovirus
## 2023-03-15 20:04:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Geminiviridae.g__Begomovirus
## 2023-03-15 20:04:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Andromedalikevirus
## 2023-03-15 20:04:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Iridoviridae.g__Lymphocystivirus
## 2023-03-15 20:04:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Twortlikevirus
## 2023-03-15 20:04:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Cheravirus
## 2023-03-15 20:04:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Ligamenvirales.f__Rudiviridae.g__Rudivirus
## 2023-03-15 20:04:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Closteroviridae.g__Ampelovirus
## 2023-03-15 20:04:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Papillomaviridae.g__Gammapapillomavirus
## 2023-03-15 20:04:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Bunyaviridae.g__Hantavirus
## 2023-03-15 20:04:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Tymovirales.f__Betaflexiviridae.g__Foveavirus
## 2023-03-15 20:04:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Skunalikevirus
## 2023-03-15 20:04:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Tymovirales.f__Tymoviridae.g__Marafivirus
## 2023-03-15 20:04:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Phikzlikevirus
## 2023-03-15 20:04:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Orthomyxoviridae.g__Influenzavirus_C
## 2023-03-15 20:04:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phi29likevirus
## 2023-03-15 20:04:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Tectiviridae.g__Tectivirus
## 2023-03-15 20:04:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Caulimoviridae.g__Cavemovirus
## 2023-03-15 20:04:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Caulimoviridae.g__Caulimovirus
## 2023-03-15 20:04:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Pbunalikevirus
## 2023-03-15 20:04:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Bromoviridae.g__Alfamovirus
## 2023-03-15 20:04:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Sp6likevirus
## 2023-03-15 20:04:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Sphaerolipoviridae.g__Gammasphaerolipovirus
## 2023-03-15 20:04:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Flaviviridae.g__Pegivirus
## 2023-03-15 20:04:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Mononegavirales.f__Rhabdoviridae.g__Vesiculovirus
## 2023-03-15 20:04:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Mononegavirales.f__Rhabdoviridae.g__Lyssavirus
## 2023-03-15 20:04:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Hepadnaviridae.g__Orthohepadnavirus
## 2023-03-15 20:04:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Tymovirales.f__Alphaflexiviridae.g__Allexivirus
## 2023-03-15 20:04:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Parvoviridae.g__Ambidensovirus
## 2023-03-15 20:04:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Comovirus
## 2023-03-15 20:04:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.g__Polemovirus
## 2023-03-15 20:04:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Leviviridae.g__Levivirus
## 2023-03-15 20:04:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phieco32likevirus
## 2023-03-15 20:04:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Reoviridae.g__Aquareovirus
## 2023-03-15 20:04:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Bromoviridae.g__Ilarvirus
## 2023-03-15 20:04:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Phic3unalikevirus
## 2023-03-15 20:04:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Narnaviridae.g__Narnavirus
## 2023-03-15 20:04:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Totiviridae.g__Totivirus
## 2023-03-15 20:04:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Chilikevirus
## 2023-03-15 20:04:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Potyviridae.g__Tritimovirus
## 2023-03-15 20:04:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viroids.f__Pospiviroidae.g__Coleviroid
## 2023-03-15 20:04:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Papillomaviridae.g__Dyopipapillomavirus
## 2023-03-15 20:04:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Siccibacter
## 2023-03-15 20:04:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Neosynechococcus
## 2023-03-15 20:04:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Dolichospermum
## 2023-03-15 20:04:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Altibacter
## 2023-03-15 20:04:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Methanomassiliicoccales.f__Methanomassiliicoccaceae.g__Candidatus_Methanomethylophilus
## 2023-03-15 20:04:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Nitritalea
## 2023-03-15 20:04:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Mangrovibacter
## 2023-03-15 20:04:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Thalassotalea
## 2023-03-15 20:04:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Pseudoramibacter
## 2023-03-15 20:04:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Reinekea
## 2023-03-15 20:04:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfospira
## 2023-03-15 20:04:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Arenitalea
## 2023-03-15 20:04:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Thermoactinomycetaceae.g__Shimazuella
## 2023-03-15 20:04:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Gaetbulibacter
## 2023-03-15 20:04:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Basilea
## 2023-03-15 20:04:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Alicyclobacillaceae.g__Effusibacillus
## 2023-03-15 20:04:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitinibacter
## 2023-03-15 20:04:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Myxosarcina
## 2023-03-15 20:04:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Gayadomonas
## 2023-03-15 20:04:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomarinum
## 2023-03-15 20:04:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Jeotgalibacillus
## 2023-03-15 20:04:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Zymobacter
## 2023-03-15 20:04:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Paeniglutamicibacter
## 2023-03-15 20:04:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halobellus
## 2023-03-15 20:04:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Archaeoglobi.o__Archaeoglobales.f__Archaeoglobaceae.g__Ferroglobus
## 2023-03-15 20:04:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Cyclobacterium
## 2023-03-15 20:04:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Sideroxydans
## 2023-03-15 20:04:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Sediminibacillus
## 2023-03-15 20:04:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methanosarcinaceae.g__Methanohalobium
## 2023-03-15 20:04:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Saccharospirillum
## 2023-03-15 20:04:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Robiginitalea
## 2023-03-15 20:04:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Caldimicrobium
## 2023-03-15 20:04:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Actinopolymorpha
## 2023-03-15 20:04:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Candidatus_Phaeomarinobacter
## 2023-03-15 20:04:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Candidatus_Koribacter
## 2023-03-15 20:04:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermabacteraceae.g__Helcobacillus
## 2023-03-15 20:04:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Centipeda
## 2023-03-15 20:04:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Nocardiopsaceae.g__Allosalinactinospora
## 2023-03-15 20:04:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ponticoccus
## 2023-03-15 20:04:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halogranum
## 2023-03-15 20:04:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Nautilia
## 2023-03-15 20:04:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Obesumbacterium
## 2023-03-15 20:04:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Desulfurobacteriales.f__Desulfurobacteriaceae.g__Thermovibrio
## 2023-03-15 20:04:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Aliiroseovarius
## 2023-03-15 20:04:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.g__Thermosulfidibacter
## 2023-03-15 20:04:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Stigonematales.g__Mastigocladopsis
## 2023-03-15 20:04:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Thaumarchaeota.o__Nitrosopumilales.f__Nitrosopumilaceae.g__Candidatus_Nitrosoarchaeum
## 2023-03-15 20:04:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Mesoaciditogales.f__Mesoaciditogaceae.g__Mesoaciditoga
## 2023-03-15 20:04:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Marinococcus
## 2023-03-15 20:04:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfobacula
## 2023-03-15 20:04:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Spongiibacteraceae.g__Dasania
## 2023-03-15 20:04:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Aquifex
## 2023-03-15 20:04:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Thermincola
## 2023-03-15 20:04:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Shuttleworthia
## 2023-03-15 20:04:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylovorus
## 2023-03-15 20:04:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.o__Thermomicrobiales.f__Thermomicrobiaceae.g__Thermomicrobium
## 2023-03-15 20:04:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halogeometricum
## 2023-03-15 20:04:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Thermocrinis
## 2023-03-15 20:04:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanofollis
## 2023-03-15 20:04:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Mesonia
## 2023-03-15 20:04:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Basfia
## 2023-03-15 20:04:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Candidatus_Atelocyanobacterium
## 2023-03-15 20:04:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Thalassolituus
## 2023-03-15 20:04:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Coriobacterium
## 2023-03-15 20:04:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Amphritea
## 2023-03-15 20:04:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Haloplanus
## 2023-03-15 20:04:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Flagellimonas
## 2023-03-15 20:04:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Thermoproteales.f__Thermoproteaceae.g__Vulcanisaeta
## 2023-03-15 20:04:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Spongiibacteraceae.g__Zhongshania
## 2023-03-15 20:05:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Bermanella
## 2023-03-15 20:05:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Afifella
## 2023-03-15 20:05:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfurivibrio
## 2023-03-15 20:05:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Salinibacillus
## 2023-03-15 20:05:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Pseudobutyrivibrio
## 2023-03-15 20:05:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Kosmotogales.f__Kosmotogaceae.g__Mesotoga
## 2023-03-15 20:05:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Paracaedibacteraceae.g__Candidatus_Odyssella
## 2023-03-15 20:05:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Holdemania
## 2023-03-15 20:05:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Balneatrix
## 2023-03-15 20:05:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Dielma
## 2023-03-15 20:05:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Terribacillus
## 2023-03-15 20:05:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Acidilobales.f__Acidilobaceae.g__Acidilobus
## 2023-03-15 20:05:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanoplanus
## 2023-03-15 20:05:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseibacterium
## 2023-03-15 20:05:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Lacimicrobium
## 2023-03-15 20:05:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Halostagnicola
## 2023-03-15 20:05:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Adlercreutzia
## 2023-03-15 20:05:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Legionellaceae.g__Tatlockia
## 2023-03-15 20:05:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Candidatus_Photodesmus
## 2023-03-15 20:05:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfonatronospira
## 2023-03-15 20:05:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Nereida
## 2023-03-15 20:05:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Cloacibacillus
## 2023-03-15 20:05:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Thaumarchaeota.g__Candidatus_Nitrosotenuis
## 2023-03-15 20:05:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Thermoproteales.f__Thermoproteaceae.g__Caldivirga
## 2023-03-15 20:05:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Subdoligranulum
## 2023-03-15 20:05:02 INFO::Creating boxplot for categorical data, Likely_combined vs contaminant1Harvard
## 2023-03-15 20:05:02 INFO::Creating boxplot for categorical data, Likely_combined vs contaminant2HarvardCanadaBaylorWashU
## 2023-03-15 20:05:02 INFO::Creating boxplot for categorical data, Likely_combined vs contaminant3AllSeqCenters
## 2023-03-15 20:05:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Anelloviridae.g__Betatorquevirus
## 2023-03-15 20:05:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Wolinella
## 2023-03-15 20:05:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Phietalikevirus
## 2023-03-15 20:05:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Reoviridae.g__Phytoreovirus
## 2023-03-15 20:05:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Rummeliibacillus
## 2023-03-15 20:05:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanoculleus
## 2023-03-15 20:05:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__T5likevirus
## 2023-03-15 20:05:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Thaumarchaeota.o__Nitrosopumilales.f__Nitrosopumilaceae.g__Nitrosopumilus
## 2023-03-15 20:05:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Papillomaviridae.g__Betapapillomavirus
## 2023-03-15 20:05:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Sfi21dtunalikevirus
## 2023-03-15 20:05:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Allobaculum
## 2023-03-15 20:05:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Bunyaviridae.g__Phlebovirus
## 2023-03-15 20:05:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Virgaviridae.g__Pecluvirus
## 2023-03-15 20:05:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanoregulaceae.g__Methanolinea
## 2023-03-15 20:05:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Tymovirales.f__Betaflexiviridae.g__Trichovirus
## 2023-03-15 20:05:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Potyviridae.g__Bymovirus
## 2023-03-15 20:05:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__P100virus
## 2023-03-15 20:05:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__N4likevirus
## 2023-03-15 20:05:04 INFO::Creating boxplot for categorical data, Likely_combined vs contaminant4RandomSpikesHarvard
## 2023-03-15 20:05:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Natronomonas
## 2023-03-15 20:05:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.g__Hoyosella
## 2023-03-15 20:05:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Sellimonas
## 2023-03-15 20:05:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Aphthovirus
## 2023-03-15 20:05:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halobacterium
## 2023-03-15 20:05:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Halolactibacillus
## 2023-03-15 20:05:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phikmvlikevirus
## 2023-03-15 20:05:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Thalassomonas
## 2023-03-15 20:05:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Halopiger
## 2023-03-15 20:05:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Haloarcula
## 2023-03-15 20:05:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Gramella
## 2023-03-15 20:05:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Pyrococcus
## 2023-03-15 20:05:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Aromatoleum
## 2023-03-15 20:05:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Inoviridae.g__Inovirus
## 2023-03-15 20:05:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Lentzea
## 2023-03-15 20:05:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Arhodomonas
## 2023-03-15 20:05:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Ponticaulis
## 2023-03-15 20:05:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Herpesvirales.f__Malacoherpesviridae.g__Ostreavirus
## 2023-03-15 20:05:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.g__Bacilladnavirus
## 2023-03-15 20:05:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natronorubrum
## 2023-03-15 20:05:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Pyrodictiaceae.g__Pyrodictium
## 2023-03-15 20:05:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Thioalkalimicrobium
## 2023-03-15 20:05:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.g__Thermobaculum
## 2023-03-15 20:05:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylothermaceae.g__Methylohalobius
## 2023-03-15 20:05:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Rudanella
## 2023-03-15 20:05:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiocystis
## 2023-03-15 20:05:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Agarivorans
## 2023-03-15 20:05:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Rubidibacter
## 2023-03-15 20:05:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Youngiibacter
## 2023-03-15 20:05:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Deferribacter
## 2023-03-15 20:05:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Cryomorphaceae.g__Owenweeksia
## 2023-03-15 20:05:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Aliihoeflea
## 2023-03-15 20:05:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prolixibacteraceae.g__Prolixibacter
## 2023-03-15 20:05:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Candidatus_Methylopumilus
## 2023-03-15 20:05:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Nisaea
## 2023-03-15 20:05:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Coprobacter
## 2023-03-15 20:05:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Sedimenticola
## 2023-03-15 20:05:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Mimiviridae.g__Mimivirus
## 2023-03-15 20:05:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Salinimonas
## 2023-03-15 20:05:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Catenovulum
## 2023-03-15 20:05:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.c__Spartobacteria.g__Candidatus_Xiphinematobacter
## 2023-03-15 20:05:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Microvirgula
## 2023-03-15 20:05:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Yokenella
## 2023-03-15 20:05:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.o__Haloplasmatales.f__Haloplasmataceae.g__Haloplasma
## 2023-03-15 20:05:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Terasakiella
## 2023-03-15 20:05:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.g__Aciduliprofundum
## 2023-03-15 20:05:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Tolumonas
## 2023-03-15 20:05:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Puniceibacterium
## 2023-03-15 20:05:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Thermodesulfatator
## 2023-03-15 20:05:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Azonexus
## 2023-03-15 20:05:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Salimicrobium
## 2023-03-15 20:05:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Thermotogaceae.g__Pseudothermotoga
## 2023-03-15 20:05:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Acidobacteria.c__Solibacteres.o__Solibacterales.g__Bryobacter
## 2023-03-15 20:05:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Fusobacteriaceae.g__Ilyobacter
## 2023-03-15 20:05:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Pelodictyon
## 2023-03-15 20:05:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Ignavibacteriae.c__Ignavibacteria.o__Ignavibacteriales.f__Melioribacteraceae.g__Melioribacter
## 2023-03-15 20:05:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Chloroflexia.o__Chloroflexales.f__Oscillochloridaceae.g__Oscillochloris
## 2023-03-15 20:05:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halarchaeum
## 2023-03-15 20:05:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Dactylococcopsis
## 2023-03-15 20:05:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.f__Competibacteraceae.g__Candidatus_Competibacter
## 2023-03-15 20:05:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halalkalicoccus
## 2023-03-15 20:05:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Lymphocryptovirus
## 2023-03-15 20:05:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Parvularculales.f__Parvularculaceae.g__Parvularcula
## 2023-03-15 20:05:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Bromoviridae.g__Oleavirus
## 2023-03-15 20:05:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Cyanobacterium
## 2023-03-15 20:05:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Aliiglaciecola
## 2023-03-15 20:05:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatirhabdium
## 2023-03-15 20:05:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Thermoproteales.f__Thermofilaceae.g__Thermofilum
## 2023-03-15 20:05:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Citreicella
## 2023-03-15 20:05:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Chelonobacter
## 2023-03-15 20:05:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Renibacterium
## 2023-03-15 20:05:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Leeia
## 2023-03-15 20:05:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halanaeroarchaeum
## 2023-03-15 20:05:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.g__Methyloceanibacter
## 2023-03-15 20:05:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Flexilinea
## 2023-03-15 20:05:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Sphingorhabdus
## 2023-03-15 20:05:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Oxalobacteraceae.g__Pseudoduganella
## 2023-03-15 20:05:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Nocardiopsaceae.g__Streptomonospora
## 2023-03-15 20:05:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Marinospirillum
## 2023-03-15 20:05:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Caliciviridae.g__Vesivirus
## 2023-03-15 20:05:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Salinivibrio
## 2023-03-15 20:05:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Blastopirellula
## 2023-03-15 20:05:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Chroococcidiopsis
## 2023-03-15 20:05:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_IV._Incertae_Sedis.g__Mahella
## 2023-03-15 20:05:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Marinimicrobium
## 2023-03-15 20:05:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Herbiconiux
## 2023-03-15 20:05:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Geovibrio
## 2023-03-15 20:05:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Jejuia
## 2023-03-15 20:05:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ketogulonicigenium
## 2023-03-15 20:05:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Kandleria
## 2023-03-15 20:05:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Anaerophaga
## 2023-03-15 20:05:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Ammonifex
## 2023-03-15 20:05:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Crocinitomicaceae.g__Crocinitomix
## 2023-03-15 20:05:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Actinotignum
## 2023-03-15 20:05:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pragia
## 2023-03-15 20:05:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Desulfuromonadaceae.g__Desulfuromonas
## 2023-03-15 20:05:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.g__Nitratifractor
## 2023-03-15 20:05:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Pseudaminobacter
## 2023-03-15 20:05:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Thaumarchaeota.c__Nitrososphaeria.o__Nitrososphaerales.f__Nitrososphaeraceae.g__Nitrososphaera
## 2023-03-15 20:05:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Croceibacter
## 2023-03-15 20:05:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Maritalea
## 2023-03-15 20:05:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Leeuwenhoekiella
## 2023-03-15 20:05:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Cryobacterium
## 2023-03-15 20:05:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Gynuella
## 2023-03-15 20:05:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Halotalea
## 2023-03-15 20:05:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Wohlfahrtiimonas
## 2023-03-15 20:05:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Thioploca
## 2023-03-15 20:05:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Ignatzschineria
## 2023-03-15 20:05:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halanaerobiaceae.g__Halothermothrix
## 2023-03-15 20:05:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Aerococcaceae.g__Eremococcus
## 2023-03-15 20:05:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Poxviridae.g__Alphaentomopoxvirus
## 2023-03-15 20:05:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanoregulaceae.g__Methanoregula
## 2023-03-15 20:05:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Elusimicrobia.c__Elusimicrobia.o__Elusimicrobiales.f__Elusimicrobiaceae.g__Elusimicrobium
## 2023-03-15 20:05:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Prosthecochloris
## 2023-03-15 20:05:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.g__Nitratiruptor
## 2023-03-15 20:05:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Cryocola
## 2023-03-15 20:05:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudooceanicola
## 2023-03-15 20:05:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Leadbetterella
## 2023-03-15 20:05:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Pyramidobacter
## 2023-03-15 20:05:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.o__Bacteroidetes_Order_II._Incertae_sedis.f__Rhodothermaceae.g__Salisaeta
## 2023-03-15 20:05:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Lentibacillus
## 2023-03-15 20:05:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Phaeodactylibacter
## 2023-03-15 20:05:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sedimentitalea
## 2023-03-15 20:05:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Aurantimonadaceae.g__Fulvimarina
## 2023-03-15 20:05:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Kerstersia
## 2023-03-15 20:05:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Bifidobacteriales.f__Bifidobacteriaceae.g__Parascardovia
## 2023-03-15 20:05:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Pleurocapsa
## 2023-03-15 20:05:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Thermosynechococcus
## 2023-03-15 20:05:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Legionellaceae.g__Fluoribacter
## 2023-03-15 20:05:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Spirochaetaceae.g__Salinispira
## 2023-03-15 20:05:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Amphibacillus
## 2023-03-15 20:05:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Bdellovibrionales.f__Halobacteriovoraceae.g__Halobacteriovorax
## 2023-03-15 20:05:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Candidatus_Neoehrlichia
## 2023-03-15 20:05:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.o__Bacteroidetes_Order_II._Incertae_sedis.f__Rhodothermaceae.g__Salinibacter
## 2023-03-15 20:05:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Chloroherpeton
## 2023-03-15 20:05:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Dethiosulfovibrio
## 2023-03-15 20:05:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Aeribacillus
## 2023-03-15 20:05:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Candidatus_Ruthia
## 2023-03-15 20:05:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Archaeoglobi.o__Archaeoglobales.f__Archaeoglobaceae.g__Geoglobus
## 2023-03-15 20:05:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Fermentimonas
## 2023-03-15 20:05:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Acaricomes
## 2023-03-15 20:05:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Campylobacteraceae.g__Sulfurospirillum
## 2023-03-15 20:05:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Simiduia
## 2023-03-15 20:05:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Aestuariivita
## 2023-03-15 20:05:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Siansivirga
## 2023-03-15 20:05:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Enterovirus
## 2023-03-15 20:05:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Holdemanella
## 2023-03-15 20:05:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Longilinea
## 2023-03-15 20:05:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Paramesorhizobium
## 2023-03-15 20:05:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Thermopetrobacter
## 2023-03-15 20:05:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Paraoerskovia
## 2023-03-15 20:05:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylococcus
## 2023-03-15 20:05:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Riesia
## 2023-03-15 20:05:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Cucumibacter
## 2023-03-15 20:05:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudorhodobacter
## 2023-03-15 20:05:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Myxococcaceae.g__Corallococcus
## 2023-03-15 20:05:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfocapsa
## 2023-03-15 20:05:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Melissococcus
## 2023-03-15 20:05:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Joostella
## 2023-03-15 20:05:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sagittula
## 2023-03-15 20:05:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Mimiviridae.g__Cafeteriavirus
## 2023-03-15 20:05:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sediminimonas
## 2023-03-15 20:05:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Anaerobacillus
## 2023-03-15 20:05:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Mariniradius
## 2023-03-15 20:05:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Tremovirus
## 2023-03-15 20:05:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Marinilabilia
## 2023-03-15 20:05:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Isosphaeraceae.g__Isosphaera
## 2023-03-15 20:05:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermodesulfobiaceae.g__Thermodesulfobium
## 2023-03-15 20:05:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Thermanaerothrix
## 2023-03-15 20:05:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Hellea
## 2023-03-15 20:05:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Mannheimia
## 2023-03-15 20:05:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Kordiimonadales.f__Kordiimonadaceae.g__Kordiimonas
## 2023-03-15 20:05:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Salipiger
## 2023-03-15 20:05:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Bunyaviridae.g__Orthobunyavirus
## 2023-03-15 20:05:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Tistrella
## 2023-03-15 20:05:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Sandarakinorhabdus
## 2023-03-15 20:05:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Aquamicrobium
## 2023-03-15 20:05:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Spirochaetaceae.g__Treponema
## 2023-03-15 20:05:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Deefgea
## 2023-03-15 20:05:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Ignavibacteriae.c__Ignavibacteria.o__Ignavibacteriales.f__Ignavibacteriaceae.g__Ignavibacterium
## 2023-03-15 20:05:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Moranella
## 2023-03-15 20:05:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Stanieria
## 2023-03-15 20:05:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Gluconacetobacter
## 2023-03-15 20:05:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Wolbachia
## 2023-03-15 20:05:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Acidocella
## 2023-03-15 20:05:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Galbibacter
## 2023-03-15 20:05:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Hepeviridae.g__Piscihepevirus
## 2023-03-15 20:05:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Salegentibacter
## 2023-03-15 20:05:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thalassobacter
## 2023-03-15 20:05:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Candidatus_Accumulibacter
## 2023-03-15 20:05:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Sporomusaceae.g__Pelosinus
## 2023-03-15 20:05:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Opitutales.f__Opitutaceae.g__Cephaloticoccus
## 2023-03-15 20:05:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Rhodospirillum
## 2023-03-15 20:05:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Granulibacter
## 2023-03-15 20:05:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Aliagarivorans
## 2023-03-15 20:05:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Betacoronavirus
## 2023-03-15 20:05:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Caulobacterales.f__Caulobacteraceae.g__Woodsholea
## 2023-03-15 20:05:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Wenxinia
## 2023-03-15 20:05:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Tunalikevirus
## 2023-03-15 20:05:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Richelia
## 2023-03-15 20:05:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Salinimicrobium
## 2023-03-15 20:05:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitiniphilus
## 2023-03-15 20:05:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Carnobacteriaceae.g__Alloiococcus
## 2023-03-15 20:05:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Stappia
## 2023-03-15 20:05:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylovulum
## 2023-03-15 20:05:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Frateuria
## 2023-03-15 20:05:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Gemmobacter
## 2023-03-15 20:05:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Limnochordia.o__Limnochordales.f__Limnochordaceae.g__Limnochorda
## 2023-03-15 20:05:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Beggiatoa
## 2023-03-15 20:05:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.g__Sobemovirus
## 2023-03-15 20:05:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Arenaviridae.g__Arenavirus
## 2023-03-15 20:05:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Yonghaparkia
## 2023-03-15 20:05:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Celeribacter
## 2023-03-15 20:05:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Kineosporiales.f__Kineosporiaceae.g__Angustibacter
## 2023-03-15 20:05:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Oceaniovalibus
## 2023-03-15 20:05:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Rhodothermaeota.c__Balneolia.o__Balneolales.f__Balneolaceae.g__Balneola
## 2023-03-15 20:05:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Yaniella
## 2023-03-15 20:05:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Circoviridae.g__Circovirus
## 2023-03-15 20:05:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Lactobacillaceae.g__Sharpea
## 2023-03-15 20:05:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Marseilleviridae.g__Marseillevirus
## 2023-03-15 20:05:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.g__Kallipyga
## 2023-03-15 20:05:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Halobacteroides
## 2023-03-15 20:05:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Kushneria
## 2023-03-15 20:05:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Christensenellaceae.g__Christensenella
## 2023-03-15 20:05:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Gallionella
## 2023-03-15 20:05:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Castellaniella
## 2023-03-15 20:05:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prevotellaceae.g__Hallella
## 2023-03-15 20:05:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Anaerolinea
## 2023-03-15 20:05:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Acidobacteria.c__Solibacteres.o__Solibacterales.f__Solibacteraceae.g__Candidatus_Solibacter
## 2023-03-15 20:05:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Marvinbryantia
## 2023-03-15 20:05:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Maribacter
## 2023-03-15 20:05:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prevotellaceae.g__Prevotella
## 2023-03-15 20:05:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Mucispirillum
## 2023-03-15 20:05:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Spongiibacteraceae.g__Spongiibacter
## 2023-03-15 20:05:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Vitreoscilla
## 2023-03-15 20:05:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Thiolapillus
## 2023-03-15 20:05:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oleiphilaceae.g__Oleiphilus
## 2023-03-15 20:05:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.c__Spartobacteria.g__Terrimicrobium
## 2023-03-15 20:05:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Thermales.f__Thermaceae.g__Oceanithermus
## 2023-03-15 20:05:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Lunatimonas
## 2023-03-15 20:05:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Simkaniaceae.g__Simkania
## 2023-03-15 20:05:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Promicromonospora
## 2023-03-15 20:05:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Dicistroviridae.g__Cripavirus
## 2023-03-15 20:05:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Hydrogenobacter
## 2023-03-15 20:05:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylobacillus
## 2023-03-15 20:05:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Propionispira
## 2023-03-15 20:05:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.g__Phocaeicola
## 2023-03-15 20:05:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Kribbella
## 2023-03-15 20:05:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Thalassobaculum
## 2023-03-15 20:05:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Synergistes
## 2023-03-15 20:05:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Diaphorobacter
## 2023-03-15 20:05:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Anaerostipes
## 2023-03-15 20:05:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Aestuariibacter
## 2023-03-15 20:05:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophaceae.g__Syntrophus
## 2023-03-15 20:05:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Ishikawaella
## 2023-03-15 20:05:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Andreprevotia
## 2023-03-15 20:05:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Eggerthia
## 2023-03-15 20:05:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natrinema
## 2023-03-15 20:05:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Acidobacterium
## 2023-03-15 20:05:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Alphacoronavirus
## 2023-03-15 20:05:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Hydrogenophilales.f__Hydrogenophilaceae.g__Thiobacillus
## 2023-03-15 20:05:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Confluentimicrobium
## 2023-03-15 20:05:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Akkermansiaceae.g__Akkermansia
## 2023-03-15 20:05:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfonatronovibrio
## 2023-03-15 20:05:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Leptolinea
## 2023-03-15 20:05:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Methyloferula
## 2023-03-15 20:05:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.f__Leptospiraceae.g__Leptonema
## 2023-03-15 20:05:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methanosarcinaceae.g__Methanohalophilus
## 2023-03-15 20:05:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Propionicicella
## 2023-03-15 20:05:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Marinovum
## 2023-03-15 20:05:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Pelistega
## 2023-03-15 20:05:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Amoebophilaceae.g__Candidatus_Amoebophilus
## 2023-03-15 20:05:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Chelativorans
## 2023-03-15 20:05:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudodonghicola
## 2023-03-15 20:05:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Flexistipes
## 2023-03-15 20:05:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Thermomonosporaceae.g__Spirillospora
## 2023-03-15 20:05:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Hydrogenovibrio
## 2023-03-15 20:05:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Austwickia
## 2023-03-15 20:05:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Starkeya
## 2023-03-15 20:05:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Palaeococcus
## 2023-03-15 20:05:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Stigonematales.g__Hapalosiphon
## 2023-03-15 20:05:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Allochromatium
## 2023-03-15 20:05:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Maritimibacter
## 2023-03-15 20:05:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Chitinimonas
## 2023-03-15 20:05:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Enterorhabdus
## 2023-03-15 20:05:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Geobacteraceae.g__Geopsychrobacter
## 2023-03-15 20:05:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Fibrobacteres.c__Chitinispirillia.o__Chitinispirillales.f__Chitinispirillaceae.g__Chitinispirillum
## 2023-03-15 20:05:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Polydnaviridae.g__Ichnovirus
## 2023-03-15 20:05:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Eudoraea
## 2023-03-15 20:05:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Asaia
## 2023-03-15 20:05:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfohalobium
## 2023-03-15 20:05:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Halonatronum
## 2023-03-15 20:05:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Candidatus_Stoquefichus
## 2023-03-15 20:05:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Pseudohongiella
## 2023-03-15 20:05:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Hahellaceae.g__Zooshikella
## 2023-03-15 20:05:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Silanimonas
## 2023-03-15 20:05:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ahrensia
## 2023-03-15 20:05:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Fibrobacteres.c__Fibrobacteria.o__Fibrobacterales.f__Fibrobacteraceae.g__Fibrobacter
## 2023-03-15 20:05:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_III._Incertae_Sedis.g__Thermosediminibacter
## 2023-03-15 20:05:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Dokdonella
## 2023-03-15 20:05:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Xanthobacter
## 2023-03-15 20:05:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Tatumella
## 2023-03-15 20:05:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zunongwangia
## 2023-03-15 20:05:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Kozakia
## 2023-03-15 20:05:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Lewinella
## 2023-03-15 20:05:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Capnocytophaga
## 2023-03-15 20:05:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Thermoplasmatales.f__Picrophilaceae.g__Picrophilus
## 2023-03-15 20:05:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Steroidobacter
## 2023-03-15 20:05:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Rouxiella
## 2023-03-15 20:05:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Coprococcus
## 2023-03-15 20:05:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Lentisphaerae.c__Lentisphaeria.o__Lentisphaerales.f__Lentisphaeraceae.g__Lentisphaera
## 2023-03-15 20:05:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Ewingella
## 2023-03-15 20:05:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Histophilus
## 2023-03-15 20:05:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bradyrhizobiaceae.g__Oligotropha
## 2023-03-15 20:05:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Gallaecimonas
## 2023-03-15 20:05:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Lutibaculum
## 2023-03-15 20:05:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfarculales.f__Desulfarculaceae.g__Desulfarculus
## 2023-03-15 20:05:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Dinoroseobacter
## 2023-03-15 20:05:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Papillomaviridae.g__Omegapapillomavirus
## 2023-03-15 20:05:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Rhodoluna
## 2023-03-15 20:05:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Oxalobacteraceae.g__Oxalobacter
## 2023-03-15 20:05:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Oscillospiraceae.g__Oscillibacter
## 2023-03-15 20:05:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Dermatophilus
## 2023-03-15 20:05:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanobacteriaceae.g__Methanosphaera
## 2023-03-15 20:05:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinopolysporales.f__Actinopolysporaceae.g__Actinopolyspora
## 2023-03-15 20:05:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Fabavirus
## 2023-03-15 20:05:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Leucothrix
## 2023-03-15 20:05:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Thaumarchaeota.g__Candidatus_Nitrosopelagicus
## 2023-03-15 20:05:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Adhaeribacter
## 2023-03-15 20:05:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Salinarchaeum
## 2023-03-15 20:05:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Silvibacterium
## 2023-03-15 20:05:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Sporolactobacillaceae.g__Tuberibacillus
## 2023-03-15 20:05:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatiglans
## 2023-03-15 20:05:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Borreliaceae.g__Borrelia
## 2023-03-15 20:05:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Crenobacter
## 2023-03-15 20:05:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Pelagibacterium
## 2023-03-15 20:05:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Halorhodospira
## 2023-03-15 20:05:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Enorma
## 2023-03-15 20:05:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Gulosibacter
## 2023-03-15 20:05:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Verrucosispora
## 2023-03-15 20:05:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Anaerovibrio
## 2023-03-15 20:05:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Carboxydothermus
## 2023-03-15 20:05:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Filomicrobium
## 2023-03-15 20:05:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Poxviridae.g__Leporipoxvirus
## 2023-03-15 20:05:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Litoreibacter
## 2023-03-15 20:05:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Longispora
## 2023-03-15 20:05:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Sediminibacter
## 2023-03-15 20:05:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Bromoviridae.g__Cucumovirus
## 2023-03-15 20:05:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomonas
## 2023-03-15 20:05:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Propionibacteriaceae.g__Propionimicrobium
## 2023-03-15 20:05:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cardiobacteriales.f__Cardiobacteriaceae.g__Cardiobacterium
## 2023-03-15 20:05:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Geofilum
## 2023-03-15 20:05:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Blastomonas
## 2023-03-15 20:05:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Sediminicola
## 2023-03-15 20:05:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Derxia
## 2023-03-15 20:05:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Riemerella
## 2023-03-15 20:05:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Rubritepida
## 2023-03-15 20:05:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Terrabacter
## 2023-03-15 20:05:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Isosphaeraceae.g__Singulisphaera
## 2023-03-15 20:05:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Nitrosococcus
## 2023-03-15 20:05:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Thermoproteales.f__Thermoproteaceae.g__Thermoproteus
## 2023-03-15 20:05:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Levilinea
## 2023-03-15 20:05:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Zymomonas
## 2023-03-15 20:05:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Peptostreptococcus
## 2023-03-15 20:05:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Vitellibacter
## 2023-03-15 20:05:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Aminomonas
## 2023-03-15 20:05:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Planctopirus
## 2023-03-15 20:05:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Shimwellia
## 2023-03-15 20:05:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Pseudolabrys
## 2023-03-15 20:05:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfarculales.f__Desulfarculaceae.g__Dethiosulfatarculus
## 2023-03-15 20:05:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.g__Thermorudis
## 2023-03-15 20:05:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Kibdelosporangium
## 2023-03-15 20:05:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Thermomonosporaceae.g__Thermomonospora
## 2023-03-15 20:05:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Hahellaceae.g__Hahella
## 2023-03-15 20:05:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Nitrincola
## 2023-03-15 20:05:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Glycomycetales.f__Glycomycetaceae.g__Haloglycomyces
## 2023-03-15 20:05:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Parvibaculum
## 2023-03-15 20:05:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Candidatus_Desulforudis
## 2023-03-15 20:05:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Flexithrix
## 2023-03-15 20:05:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Virgibacillus
## 2023-03-15 20:05:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseivivax
## 2023-03-15 20:05:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Microthrixaceae.g__Candidatus_Microthrix
## 2023-03-15 20:05:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Ornithobacterium
## 2023-03-15 20:05:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobiaceae.g__Haloferula
## 2023-03-15 20:05:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Kineosporiales.f__Kineosporiaceae.g__Kineosporia
## 2023-03-15 20:05:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Halieaceae.g__Luminiphilus
## 2023-03-15 20:05:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sulfitobacter
## 2023-03-15 20:05:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Flaviflexus
## 2023-03-15 20:05:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Tanticharoenia
## 2023-03-15 20:05:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Niabella
## 2023-03-15 20:05:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Gimesia
## 2023-03-15 20:05:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Croceitalea
## 2023-03-15 20:05:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Orthomyxoviridae.g__Isavirus
## 2023-03-15 20:05:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Granulicella
## 2023-03-15 20:05:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Terracoccus
## 2023-03-15 20:05:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Oceanospirillum
## 2023-03-15 20:05:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bradyrhizobiaceae.g__Tardiphaga
## 2023-03-15 20:05:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Deinococcales.f__Trueperaceae.g__Truepera
## 2023-03-15 20:05:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Magnetococcales.f__Magnetococcaceae.g__Magnetococcus
## 2023-03-15 20:05:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Micrococcus
## 2023-03-15 20:05:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Phycodnaviridae.g__Prymnesiovirus
## 2023-03-15 20:05:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatitalea
## 2023-03-15 20:05:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Kocuria
## 2023-03-15 20:05:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Isoptericola
## 2023-03-15 20:05:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cardiobacteriales.f__Cardiobacteriaceae.g__Dichelobacter
## 2023-03-15 20:05:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Paenirhodobacter
## 2023-03-15 20:05:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Faecalicoccus
## 2023-03-15 20:05:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.g__Timonella
## 2023-03-15 20:05:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Simplexvirus
## 2023-03-15 20:05:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Micavibrio
## 2023-03-15 20:05:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Nesiotobacter
## 2023-03-15 20:05:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Spounalikevirus
## 2023-03-15 20:05:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Dongia
## 2023-03-15 20:05:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Bdellovibrionales.f__Bacteriovoracaceae.g__Bacteriovorax
## 2023-03-15 20:05:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Crocinitomicaceae.g__Fluviicola
## 2023-03-15 20:05:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylobacteriaceae.g__Microvirga
## 2023-03-15 20:05:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Gemmatimonadetes.c__Gemmatimonadetes.o__Gemmatimonadales.f__Gemmatimonadaceae.g__Gemmatirosa
## 2023-03-15 20:05:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Parvimonas
## 2023-03-15 20:05:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Leptotrichiaceae.g__Sebaldella
## 2023-03-15 20:05:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Saccharibacter
## 2023-03-15 20:05:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Rubinisphaera
## 2023-03-15 20:05:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Cesiribacter
## 2023-03-15 20:05:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Anaerofustis
## 2023-03-15 20:05:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Clostridium
## 2023-03-15 20:05:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Thermococcus
## 2023-03-15 20:05:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Rudaea
## 2023-03-15 20:05:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Echinicola
## 2023-03-15 20:05:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Kineosporiales.f__Kineosporiaceae.g__Kineococcus
## 2023-03-15 20:05:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.g__Caedibacter
## 2023-03-15 20:05:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Novispirillum
## 2023-03-15 20:05:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Paludibacterium
## 2023-03-15 20:05:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Franconibacter
## 2023-03-15 20:05:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiocapsa
## 2023-03-15 20:05:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Catelliglobosispora
## 2023-03-15 20:05:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Fulvivirga
## 2023-03-15 20:05:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Olleya
## 2023-03-15 20:05:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Candidatus_Korarchaeota.g__Candidatus_Korarchaeum
## 2023-03-15 20:05:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Thermanaerovibrio
## 2023-03-15 20:05:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Sanguibacteroides
## 2023-03-15 20:05:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Desulfurococcaceae.g__Ignicoccus
## 2023-03-15 20:05:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Aeromonas
## 2023-03-15 20:05:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Phaeospirillum
## 2023-03-15 20:05:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Schlesneria
## 2023-03-15 20:05:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Nonlabens
## 2023-03-15 20:05:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Shimia
## 2023-03-15 20:05:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Virgaviridae.g__Pomovirus
## 2023-03-15 20:05:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Actinocatenispora
## 2023-03-15 20:05:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Ferrimicrobium
## 2023-03-15 20:05:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Rikenellaceae.g__Mucinivorans
## 2023-03-15 20:05:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Microterricola
## 2023-03-15 20:05:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Planomonospora
## 2023-03-15 20:05:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Oleiagrimonas
## 2023-03-15 20:05:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zhouia
## 2023-03-15 20:05:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sneathiellales.f__Sneathiellaceae.g__Sneathiella
## 2023-03-15 20:05:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Microscilla
## 2023-03-15 20:05:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Kluyvera
## 2023-03-15 20:05:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Asanoa
## 2023-03-15 20:05:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Eggerthella
## 2023-03-15 20:05:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Hirschia
## 2023-03-15 20:05:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Catenuloplanes
## 2023-03-15 20:05:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitinilyticum
## 2023-03-15 20:05:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Aminobacterium
## 2023-03-15 20:05:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Alkaliflexus
## 2023-03-15 20:05:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Proteus
## 2023-03-15 20:05:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Thermomonas
## 2023-03-15 20:05:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Ornatilinea
## 2023-03-15 20:05:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bartonellaceae.g__Bartonella
## 2023-03-15 20:05:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Staphylococcaceae.g__Macrococcus
## 2023-03-15 20:05:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Spiribacter
## 2023-03-15 20:05:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Agreia
## 2023-03-15 20:05:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Terrimonas
## 2023-03-15 20:05:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Chania
## 2023-03-15 20:05:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Polycyclovorans
## 2023-03-15 20:05:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Oceanibaculum
## 2023-03-15 20:05:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Desulfurobacteriales.f__Desulfurobacteriaceae.g__Desulfurobacterium
## 2023-03-15 20:05:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Flavisolibacter
## 2023-03-15 20:05:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Glycomycetales.f__Glycomycetaceae.g__Glycomyces
## 2023-03-15 20:05:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Papillomaviridae.g__Lambdapapillomavirus
## 2023-03-15 20:05:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Pseudarthrobacter
## 2023-03-15 20:05:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Polyangiaceae.g__Sorangium
## 2023-03-15 20:05:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Halothiobacillaceae.g__Halothiobacillus
## 2023-03-15 20:05:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Johnsonella
## 2023-03-15 20:05:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Gemmata
## 2023-03-15 20:05:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Adenoviridae.g__Mastadenovirus
## 2023-03-15 20:05:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Cyanobium
## 2023-03-15 20:05:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Comamonas
## 2023-03-15 20:05:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Caulobacterales.f__Caulobacteraceae.g__Phenylobacterium
## 2023-03-15 20:05:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermabacteraceae.g__Dermabacter
## 2023-03-15 20:05:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Muricauda
## 2023-03-15 20:05:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Flavihumibacter
## 2023-03-15 20:05:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Puniceicoccales.f__Puniceicoccaceae.g__Coraliomargarita
## 2023-03-15 20:05:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Anaplasma
## 2023-03-15 20:05:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Mycobacteriaceae.g__Mycobacterium
## 2023-03-15 20:05:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Desulfurispora
## 2023-03-15 20:05:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfovibrionaceae.g__Lawsonia
## 2023-03-15 20:05:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Xylella
## 2023-03-15 20:05:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Enteractinococcus
## 2023-03-15 20:05:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinomycetospora
## 2023-03-15 20:05:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Colwellia
## 2023-03-15 20:05:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Saccharibacillus
## 2023-03-15 20:05:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Roseivirga
## 2023-03-15 20:05:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Veillonellales.f__Veillonellaceae.g__Megasphaera
## 2023-03-15 20:05:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Ferriphaselus
## 2023-03-15 20:05:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Marinobacter
## 2023-03-15 20:05:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Erysipelatoclostridium
## 2023-03-15 20:05:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Luteibacter
## 2023-03-15 20:05:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Xenococcus
## 2023-03-15 20:05:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Mitsuaria
## 2023-03-15 20:05:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Elusimicrobia.c__Endomicrobia.o__Endomicrobiales.f__Endomicrobiaceae.g__Endomicrobium
## 2023-03-15 20:05:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Planktomarina
## 2023-03-15 20:05:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Magnetospira
## 2023-03-15 20:05:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halorhabdus
## 2023-03-15 20:05:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Dehalococcoidia.g__Dehalogenimonas
## 2023-03-15 20:05:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thioflavicoccus
## 2023-03-15 20:05:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.o__Methylacidiphilales.f__Methylacidiphilaceae.g__Methylacidiphilum
## 2023-03-15 20:05:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhizobiaceae.g__Neorhizobium
## 2023-03-15 20:05:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylobacteriaceae.g__Meganema
## 2023-03-15 20:05:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Porticoccaceae.g__Porticoccus
## 2023-03-15 20:05:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methermicoccaceae.g__Methermicoccus
## 2023-03-15 20:05:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Allokutzneria
## 2023-03-15 20:05:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Flammeovirga
## 2023-03-15 20:05:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Succinivibrionaceae.g__Succinivibrio
## 2023-03-15 20:05:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Delftia
## 2023-03-15 20:05:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Leptothrix
## 2023-03-15 20:05:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Wenzhouxiangellaceae.g__Wenzhouxiangella
## 2023-03-15 20:05:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halapricum
## 2023-03-15 20:05:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Viridibacillus
## 2023-03-15 20:05:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Spirosoma
## 2023-03-15 20:05:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Haliscomenobacter
## 2023-03-15 20:05:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Coleofasciculus
## 2023-03-15 20:05:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulforegula
## 2023-03-15 20:05:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Dictyoglomi.c__Dictyoglomia.o__Dictyoglomales.f__Dictyoglomaceae.g__Dictyoglomus
## 2023-03-15 20:05:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Caenimonas
## 2023-03-15 20:05:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Citromicrobium
## 2023-03-15 20:05:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Gordonibacter
## 2023-03-15 20:05:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Rubrobacteria.o__Rubrobacterales.f__Rubrobacteraceae.g__Rubrobacter
## 2023-03-15 20:05:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Maribius
## 2023-03-15 20:05:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Vibrio
## 2023-03-15 20:05:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Mitsuokella
## 2023-03-15 20:05:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Phycodnaviridae.g__Prasinovirus
## 2023-03-15 20:05:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Listeriaceae.g__Listeria
## 2023-03-15 20:05:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Orbales.f__Orbaceae.g__Frischella
## 2023-03-15 20:05:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Frankiales.f__Sporichthyaceae.g__Sporichthya
## 2023-03-15 20:05:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Kiloniellales.f__Kiloniellaceae.g__Kiloniella
## 2023-03-15 20:05:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Octadecabacter
## 2023-03-15 20:05:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Arcticibacter
## 2023-03-15 20:05:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Retroviridae.g__Betaretrovirus
## 2023-03-15 20:05:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Weeksella
## 2023-03-15 20:05:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Sciscionella
## 2023-03-15 20:05:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Neptunomonas
## 2023-03-15 20:05:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Pilimelia
## 2023-03-15 20:05:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Kinetoplastibacterium
## 2023-03-15 20:05:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Schleiferiaceae.g__Schleiferia
## 2023-03-15 20:05:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Hepatovirus
## 2023-03-15 20:05:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Desulfuromonadaceae.g__Pelobacter
## 2023-03-15 20:05:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Xylanimonas
## 2023-03-15 20:05:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.g__Tropheryma
## 2023-03-15 20:05:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfomicrobiaceae.g__Desulfomicrobium
## 2023-03-15 20:05:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Thermobrachium
## 2023-03-15 20:05:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thioclava
## 2023-03-15 20:05:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Senegalimassilia
## 2023-03-15 20:05:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Regiella
## 2023-03-15 20:05:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_III._Incertae_Sedis.g__Caldicellulosiruptor
## 2023-03-15 20:05:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Yersinia
## 2023-03-15 20:05:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Hamadaea
## 2023-03-15 20:05:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Dactylosporangium
## 2023-03-15 20:05:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Haematospirillum
## 2023-03-15 20:05:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfonatronaceae.g__Desulfonatronum
## 2023-03-15 20:05:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Amantichitinum
## 2023-03-15 20:05:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Nitrospirae.c__Nitrospira.o__Nitrospirales.f__Nitrospiraceae.g__Candidatus_Magnetobacterium
## 2023-03-15 20:05:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Skermanella
## 2023-03-15 20:05:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylosarcina
## 2023-03-15 20:05:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Hafnia
## 2023-03-15 20:05:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Nakamurellales.f__Nakamurellaceae.g__Nakamurella
## 2023-03-15 20:05:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Polynucleobacter
## 2023-03-15 20:05:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Advenella
## 2023-03-15 20:05:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ruegeria
## 2023-03-15 20:05:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Methylocella
## 2023-03-15 20:05:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Acetohalobium
## 2023-03-15 20:05:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Segetibacter
## 2023-03-15 20:05:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Waddliaceae.g__Waddlia
## 2023-03-15 20:05:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Rhodobacter
## 2023-03-15 20:05:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Sporomusaceae.g__Sporomusa
## 2023-03-15 20:05:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Acidithrix
## 2023-03-15 20:05:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Parabacteroides
## 2023-03-15 20:05:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Haemophilus
## 2023-03-15 20:05:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Candidatus_Soleaferrea
## 2023-03-15 20:05:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Zetaproteobacteria.o__Mariprofundales.f__Mariprofundaceae.g__Mariprofundus
## 2023-03-15 20:05:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Pyrodictiaceae.g__Pyrolobus
## 2023-03-15 20:05:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Pleomorphomonas
## 2023-03-15 20:05:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Henriciella
## 2023-03-15 20:05:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Symbiobacteriaceae.g__Symbiobacterium
## 2023-03-15 20:05:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Enterobacter
## 2023-03-15 20:05:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Holosporaceae.g__Holospora
## 2023-03-15 20:05:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Providencia
## 2023-03-15 20:05:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Varicellovirus
## 2023-03-15 20:05:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Emticicia
## 2023-03-15 20:05:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Candidatus_Puniceispirillum
## 2023-03-15 20:05:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Catenulisporales.f__Actinospicaceae.g__Actinospica
## 2023-03-15 20:05:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Flaviviridae.g__Flavivirus
## 2023-03-15 20:05:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pantoea
## 2023-03-15 20:05:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Eikenella
## 2023-03-15 20:05:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Proteiniclasticum
## 2023-03-15 20:05:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Vulgatibacteraceae.g__Vulgatibacter
## 2023-03-15 20:06:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Azohydromonas
## 2023-03-15 20:06:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Thermoactinomycetaceae.g__Thermoactinomyces
## 2023-03-15 20:06:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Pirellula
## 2023-03-15 20:06:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Gracilibacillus
## 2023-03-15 20:06:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Candidatus_Cloacimonetes.g__Candidatus_Cloacimonas
## 2023-03-15 20:06:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Senecavirus
## 2023-03-15 20:06:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Hydrogenivirga
## 2023-03-15 20:06:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Polyangiaceae.g__Chondromyces
## 2023-03-15 20:06:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Cecembia
## 2023-03-15 20:06:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Defluviimonas
## 2023-03-15 20:06:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Sediminibacterium
## 2023-03-15 20:06:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Helcococcus
## 2023-03-15 20:06:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Muribacter
## 2023-03-15 20:06:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Robinsoniella
## 2023-03-15 20:06:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylobacter
## 2023-03-15 20:06:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Falsirhodobacter
## 2023-03-15 20:06:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Herbidospora
## 2023-03-15 20:06:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobia_subdivision_3.g__Pedosphaera
## 2023-03-15 20:06:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_III._Incertae_Sedis.g__Thermoanaerobacterium
## 2023-03-15 20:06:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Orenia
## 2023-03-15 20:06:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Rhodovibrio
## 2023-03-15 20:06:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Acidaminococcales.f__Acidaminococcaceae.g__Acidaminococcus
## 2023-03-15 20:06:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Hydrogenibacillus
## 2023-03-15 20:06:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Caldicoprobacteraceae.g__Caldicoprobacter
## 2023-03-15 20:06:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Ventosimonadaceae.g__Ventosimonas
## 2023-03-15 20:06:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Ehrlichia
## 2023-03-15 20:06:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.o__Sphaerobacterales.f__Sphaerobacteraceae.g__Sphaerobacter
## 2023-03-15 20:06:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Brachyspirales.f__Brachyspiraceae.g__Brachyspira
## 2023-03-15 20:06:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Roseburia
## 2023-03-15 20:06:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhizobiaceae.g__Agrobacterium
## 2023-03-15 20:06:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Thermales.f__Thermaceae.g__Marinithermus
## 2023-03-15 20:06:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Salinisphaerales.f__Salinisphaeraceae.g__Salinisphaera
## 2023-03-15 20:06:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Microbispora
## 2023-03-15 20:06:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Pseudomonadaceae.g__Oblitimonas
## 2023-03-15 20:06:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Thiorhodospira
## 2023-03-15 20:06:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Herpesvirales.f__Alloherpesviridae.g__Batrachovirus
## 2023-03-15 20:06:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Pseudoflavonifractor
## 2023-03-15 20:06:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Nonomuraea
## 2023-03-15 20:06:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Helicobacter
## 2023-03-15 20:06:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.g__Anaerosporomusa
## 2023-03-15 20:06:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Campylobacteraceae.g__Campylobacter
## 2023-03-15 20:06:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Odoribacteraceae.g__Odoribacter
## 2023-03-15 20:06:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Marivirga
## 2023-03-15 20:06:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfobacter
## 2023-03-15 20:06:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Loktanella
## 2023-03-15 20:06:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zobellia
## 2023-03-15 20:06:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Anaerobaculum
## 2023-03-15 20:06:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Aquamavirus
## 2023-03-15 20:06:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Poxviridae.g__Molluscipoxvirus
## 2023-03-15 20:06:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Oceanimonas
## 2023-03-15 20:06:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pluralibacter
## 2023-03-15 20:06:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thalassobius
## 2023-03-15 20:06:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Kosakonia
## 2023-03-15 20:06:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Pimelobacter
## 2023-03-15 20:06:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Paracaedibacteraceae.g__Candidatus_Paracaedibacter
## 2023-03-15 20:06:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Thermosulfurimonas
## 2023-03-15 20:06:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinokineospora
## 2023-03-15 20:06:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Mangrovimonas
## 2023-03-15 20:06:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.g__Candidatus_Hepatobacter
## 2023-03-15 20:06:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Syntrophomonadaceae.g__Syntrophomonas
## 2023-03-15 20:06:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Planctomyces
## 2023-03-15 20:06:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Candidatus_Profftella
## 2023-03-15 20:06:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Serinicoccus
## 2023-03-15 20:06:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfovermiculus
## 2023-03-15 20:06:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Coprobacillus
## 2023-03-15 20:06:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Rothia
## 2023-03-15 20:06:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Dicistroviridae.g__Aparavirus
## 2023-03-15 20:06:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Algoriphagus
## 2023-03-15 20:06:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Pseudobacteroides
## 2023-03-15 20:06:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Ideonella
## 2023-03-15 20:06:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Gordoniaceae.g__Gordonia
## 2023-03-15 20:06:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Cycloclasticus
## 2023-03-15 20:06:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Oribacterium
## 2023-03-15 20:06:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Tenacibaculum
## 2023-03-15 20:06:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Lentimicrobiaceae.g__Lentimicrobium
## 2023-03-15 20:06:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Solibacillus
## 2023-03-15 20:06:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanothermaceae.g__Methanothermus
## 2023-03-15 20:06:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Carnimonas
## 2023-03-15 20:06:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Phycodnaviridae.g__Chlorovirus
## 2023-03-15 20:06:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Criblamydiaceae.g__Criblamydia
## 2023-03-15 20:06:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Nostoc
## 2023-03-15 20:06:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.g__Reyranella
## 2023-03-15 20:06:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Propionibacteriaceae.g__Granulicoccus
## 2023-03-15 20:06:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Candidatus_Arthromitus
## 2023-03-15 20:06:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Fervidobacteriaceae.g__Thermosipho
## 2023-03-15 20:06:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Vagococcus
## 2023-03-15 20:06:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Astroviridae.g__Mamastrovirus
## 2023-03-15 20:06:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.g__Elioraea
## 2023-03-15 20:06:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Tepidicaulis
## 2023-03-15 20:06:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Fibrella
## 2023-03-15 20:06:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Slackia
## 2023-03-15 20:06:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Mizugakiibacter
## 2023-03-15 20:06:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfurellales.f__Desulfurellaceae.g__Desulfurella
## 2023-03-15 20:06:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Apibacter
## 2023-03-15 20:06:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Midichloriaceae.g__Candidatus_Midichloria
## 2023-03-15 20:06:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Dehalococcoidia.o__Dehalococcoidales.f__Dehalococcoidaceae.g__Dehalococcoides
## 2023-03-15 20:06:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermacoccaceae.g__Luteipulveratus
## 2023-03-15 20:06:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Alicycliphilus
## 2023-03-15 20:06:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Rubellimicrobium
## 2023-03-15 20:06:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Sporomusaceae.g__Anaeromusa
## 2023-03-15 20:06:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Leuconostocaceae.g__Leuconostoc
## 2023-03-15 20:06:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Xylophilus
## 2023-03-15 20:06:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Methylibium
## 2023-03-15 20:06:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Acidilobales.f__Caldisphaeraceae.g__Caldisphaera
## 2023-03-15 20:06:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Maricaulis
## 2023-03-15 20:06:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Candidatus_Aquiluna
## 2023-03-15 20:06:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Acidobacteria.c__Blastocatellia.g__Chloracidobacterium
## 2023-03-15 20:06:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Jiangellales.f__Jiangellaceae.g__Jiangella
## 2023-03-15 20:06:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Amorphus
## 2023-03-15 20:06:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Aminobacter
## 2023-03-15 20:06:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.g__Tomitella
## 2023-03-15 20:06:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Lampropedia
## 2023-03-15 20:06:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Calditerrivibrio
## 2023-03-15 20:06:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Rhodothermaeota.c__Balneolia.o__Balneolales.f__Balneolaceae.g__Gracilimonas
## 2023-03-15 20:06:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Escherichia
## 2023-03-15 20:06:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Ilumatobacter
## 2023-03-15 20:06:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Thermotogaceae.g__Thermotoga
## 2023-03-15 20:06:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Bacteroidaceae.g__Bacteroides
## 2023-03-15 20:06:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Buttiauxella
## 2023-03-15 20:06:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Lechevalieria
## 2023-03-15 20:06:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Eubacterium
## 2023-03-15 20:06:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Sandaracinaceae.g__Sandaracinus
## 2023-03-15 20:06:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Petrotogales.g__Defluviitoga
## 2023-03-15 20:06:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Arsukibacterium
## 2023-03-15 20:06:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Demequinaceae.g__Demequina
## 2023-03-15 20:06:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Bacillus
## 2023-03-15 20:06:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Chelatococcus
## 2023-03-15 20:06:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Belnapia
## 2023-03-15 20:06:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Flaviviridae.g__Pestivirus
## 2023-03-15 20:06:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Jonquetella
## 2023-03-15 20:06:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Aurantimonadaceae.g__Martelella
## 2023-03-15 20:06:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Iridoviridae.g__Ranavirus
## 2023-03-15 20:06:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfovibrionaceae.g__Desulfocurvus
## 2023-03-15 20:06:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Actinobaculum
## 2023-03-15 20:06:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Denitrobacterium
## 2023-03-15 20:06:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophaceae.g__Desulfobacca
## 2023-03-15 20:06:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Prauserella
## 2023-03-15 20:06:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Opitutales.f__Opitutaceae.g__Opitutus
## 2023-03-15 20:06:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Thermocrispum
## 2023-03-15 20:06:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylocaldum
## 2023-03-15 20:06:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Prosthecomicrobium
## 2023-03-15 20:06:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Polyomaviridae.g__Polyomavirus
## 2023-03-15 20:06:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Cellulosilyticum
## 2023-03-15 20:06:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Tymovirales.f__Alphaflexiviridae.g__Potexvirus
## 2023-03-15 20:06:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Epulopiscium
## 2023-03-15 20:06:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Hypoviridae.g__Hypovirus
## 2023-03-15 20:06:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Ornithinibacillus
## 2023-03-15 20:06:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.f__Leptospiraceae.g__Turneriella
## 2023-03-15 20:06:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiorhodovibrio
## 2023-03-15 20:06:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Cobetia
## 2023-03-15 20:06:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Necropsobacter
## 2023-03-15 20:06:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Bafinivirus
## 2023-03-15 20:06:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Fictibacillus
## 2023-03-15 20:06:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Blastochloris
## 2023-03-15 20:06:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Acetivibrio
## 2023-03-15 20:06:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Methylopila
## 2023-03-15 20:06:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Agrococcus
## 2023-03-15 20:06:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Varibaculum
## 2023-03-15 20:06:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Tannerella
## 2023-03-15 20:06:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Tymovirales.f__Betaflexiviridae.g__Carlavirus
## 2023-03-15 20:06:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Salivirus
## 2023-03-15 20:06:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Kineosphaera
## 2023-03-15 20:06:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Acaryochloris
## 2023-03-15 20:06:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Kurthia
## 2023-03-15 20:06:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Klebsiella
## 2023-03-15 20:06:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.g__Fangia
## 2023-03-15 20:06:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Halalkalibacillus
## 2023-03-15 20:06:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Raoultella
## 2023-03-15 20:06:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Geminicoccus
## 2023-03-15 20:06:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Pasteurella
## 2023-03-15 20:06:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseovarius
## 2023-03-15 20:06:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Marinomonas
## 2023-03-15 20:06:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Arsenicicoccus
## 2023-03-15 20:06:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Thiomicrospira
## 2023-03-15 20:06:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Poxviridae.g__Betaentomopoxvirus
## 2023-03-15 20:06:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Acidaminococcales.f__Acidaminococcaceae.g__Succinispira
## 2023-03-15 20:06:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Leclercia
## 2023-03-15 20:06:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Terracidiphilus
## 2023-03-15 20:06:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Paucibacter
## 2023-03-15 20:06:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Nitrospirae.c__Nitrospira.o__Nitrospirales.f__Nitrospiraceae.g__Leptospirillum
## 2023-03-15 20:06:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Alloactinosynnema
## 2023-03-15 20:06:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Pseudomonadaceae.g__Azotobacter
## 2023-03-15 20:06:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylotenera
## 2023-03-15 20:06:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Labilitrichaceae.g__Labilithrix
## 2023-03-15 20:06:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Rickettsiaceae.g__Orientia
## 2023-03-15 20:06:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Alcanivoracaceae.g__Kangiella
## 2023-03-15 20:06:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Rhadinovirus
## 2023-03-15 20:06:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Thermonemataceae.g__Thermonema
## 2023-03-15 20:06:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Thermobacillus
## 2023-03-15 20:06:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Veillonellales.f__Veillonellaceae.g__Dialister
## 2023-03-15 20:06:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Oceanicaulis
## 2023-03-15 20:06:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Pseudopedobacter
## 2023-03-15 20:06:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Aquincola
## 2023-03-15 20:06:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Rhodoferax
## 2023-03-15 20:06:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Neorickettsia
## 2023-03-15 20:06:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Kosmotogales.f__Kosmotogaceae.g__Kosmotoga
## 2023-03-15 20:06:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Paeniclostridium
## 2023-03-15 20:06:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Pontibacter
## 2023-03-15 20:06:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Saccharophagus
## 2023-03-15 20:06:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Mycoplasmatales.f__Mycoplasmataceae.g__Ureaplasma
## 2023-03-15 20:06:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.g__Candidatus_Sulcia
## 2023-03-15 20:06:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Cryptobacterium
## 2023-03-15 20:06:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Kamptonema
## 2023-03-15 20:06:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Faecalibaculum
## 2023-03-15 20:06:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Komagataeibacter
## 2023-03-15 20:06:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Achromobacter
## 2023-03-15 20:06:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Planomicrobium
## 2023-03-15 20:06:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Rubritaleaceae.g__Rubritalea
## 2023-03-15 20:06:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Caldiserica.c__Caldisericia.o__Caldisericales.f__Caldisericaceae.g__Caldisericum
## 2023-03-15 20:06:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Acidaminococcales.f__Acidaminococcaceae.g__Phascolarctobacterium
## 2023-03-15 20:06:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Leuconostocaceae.g__Fructobacillus
## 2023-03-15 20:06:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Hydrocarboniphaga
## 2023-03-15 20:06:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Nafulsella
## 2023-03-15 20:06:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinoalloteichus
## 2023-03-15 20:06:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Heliobacteriaceae.g__Heliobacterium
## 2023-03-15 20:06:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chrysiogenetes.c__Chrysiogenetes.o__Chrysiogenales.f__Chrysiogenaceae.g__Desulfurispirillum
## 2023-03-15 20:06:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Cylindrospermopsis
## 2023-03-15 20:06:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Planococcus
## 2023-03-15 20:06:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Paludibacter
## 2023-03-15 20:06:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Carnobacteriaceae.g__Allofustis
## 2023-03-15 20:06:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Mobiluncus
## 2023-03-15 20:06:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Bibersteinia
## 2023-03-15 20:06:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Oligella
## 2023-03-15 20:06:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Saccharomonospora
## 2023-03-15 20:06:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Pandoraea
## 2023-03-15 20:06:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Segniliparaceae.g__Segniliparus
## 2023-03-15 20:06:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinifilaceae.g__Marinifilum
## 2023-03-15 20:06:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Flexibacter
## 2023-03-15 20:06:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Barnesiella
## 2023-03-15 20:06:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Nannocystaceae.g__Plesiocystis
## 2023-03-15 20:06:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Marinobacterium
## 2023-03-15 20:06:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Uliginosibacterium
## 2023-03-15 20:06:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Mycoplasmatales.f__Mycoplasmataceae.g__Mycoplasma
## 2023-03-15 20:06:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Retroviridae.g__Alpharetrovirus
## 2023-03-15 20:06:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Leucobacter
## 2023-03-15 20:06:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Stigonematales.g__Mastigocoleus
## 2023-03-15 20:06:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Nesterenkonia
## 2023-03-15 20:06:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Methylosinus
## 2023-03-15 20:06:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Aquitalea
## 2023-03-15 20:06:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Ectothiorhodospira
## 2023-03-15 20:06:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Brucellaceae.g__Ochrobactrum
## 2023-03-15 20:06:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Actinotalea
## 2023-03-15 20:06:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermacoccaceae.g__Demetria
## 2023-03-15 20:06:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanobacteriaceae.g__Methanothermobacter
## 2023-03-15 20:06:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Fusobacteriaceae.g__Psychrilyobacter
## 2023-03-15 20:06:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Intestinibacter
## 2023-03-15 20:06:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Caldilineae.o__Caldilineales.f__Caldilineaceae.g__Caldilinea
## 2023-03-15 20:06:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prolixibacteraceae.g__Draconibacterium
## 2023-03-15 20:06:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Chlamydiaceae.g__Chlamydia
## 2023-03-15 20:06:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Tyzzerella
## 2023-03-15 20:06:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Runella
## 2023-03-15 20:06:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Trueperella
## 2023-03-15 20:06:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Kobuvirus
## 2023-03-15 20:06:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Phycicoccus
## 2023-03-15 20:06:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Zavarzinella
## 2023-03-15 20:06:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Methanomassiliicoccales.f__Methanomassiliicoccaceae.g__Methanomassiliicoccus
## 2023-03-15 20:06:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Acetobacter
## 2023-03-15 20:06:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Atopobiaceae.g__Atopobium
## 2023-03-15 20:06:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Thalassospira
## 2023-03-15 20:06:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.g__Deferrisoma
## 2023-03-15 20:06:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Candidatus_Endolissoclinum
## 2023-03-15 20:06:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Propionibacteriaceae.g__Aestuariimicrobium
## 2023-03-15 20:06:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Knoellia
## 2023-03-15 20:06:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Alicyclobacillaceae.g__Kyrpidia
## 2023-03-15 20:06:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Thermovirga
## 2023-03-15 20:06:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Mycetocola
## 2023-03-15 20:06:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Caldalkalibacillus
## 2023-03-15 20:06:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermacoccaceae.g__Dermacoccus
## 2023-03-15 20:06:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Microchaetaceae.g__Hassallia
## 2023-03-15 20:06:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Alcaligenes
## 2023-03-15 20:06:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Crocosphaera
## 2023-03-15 20:06:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Hyphomicrobium
## 2023-03-15 20:06:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiales_Family_XIII._Incertae_Sedis.g__Casaltella
## 2023-03-15 20:06:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Catenulisporales.f__Catenulisporaceae.g__Catenulispora
## 2023-03-15 20:06:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Denitrovibrio
## 2023-03-15 20:06:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Flectobacillus
maaslin_likely_group_PC <- function_Maaslin2(df_ACC_filter_likely_Voom_SNM, "PC_combined", "Temp/likely_group_PC")
## [1] "Warning: Deleting existing log file: Temp/likely_group_PC/maaslin2.log"
## 2023-03-15 20:06:26 INFO::Writing function arguments to log file
## 2023-03-15 20:06:26 INFO::Verifying options selected are valid
## 2023-03-15 20:06:26 INFO::Determining format of input files
## 2023-03-15 20:06:26 INFO::Input format is data samples as rows and metadata samples as rows
## 2023-03-15 20:06:26 INFO::Formula for random effects: expr ~ (1 | SEX) + (1 | Ethnicity_Race) + (1 | AGE) + (1 | Neoplasm_Status) + (1 | Clinical_Status_3_Mo_Post.Op) + (1 | Surgical_margin) + (1 | ATYPICAL_MITOTIC_FIGURES)
## 2023-03-15 20:06:26 INFO::Formula for fixed effects: expr ~  PC_combined
## 2023-03-15 20:06:26 INFO::Filter data based on min abundance and min prevalence
## 2023-03-15 20:06:26 INFO::Total samples in data: 77
## 2023-03-15 20:06:26 INFO::Min samples required with min abundance for a feature not to be filtered: 0.000000
## 2023-03-15 20:06:26 INFO::Total filtered features: 71
## 2023-03-15 20:06:26 INFO::Filtered feature names from abundance and prevalence filtering: k__Viruses.f__Baculoviridae.g__Deltabaculovirus, k__Viruses.o__Caudovirales.f__Myoviridae.g__I3likevirus, k__Viruses.f__Anelloviridae.g__Gammatorquevirus, k__Viruses.g__Tenuivirus, k__Viruses.f__Poxviridae.g__Capripoxvirus, k__Viruses.o__Mononegavirales.f__Nyamiviridae.g__Nyavirus, k__Viruses.g__Emaravirus, k__Viruses.o__Picornavirales.f__Secoviridae.g__Waikavirus, k__Viruses.f__Poxviridae.g__Yatapoxvirus, k__Viruses.f__Poxviridae.g__Orthopoxvirus, k__Viruses.o__Caudovirales.f__Siphoviridae.g__L5likevirus, k__Viruses.f__Hytrosaviridae.g__Muscavirus, k__Viruses.f__Closteroviridae.g__Crinivirus, k__Viruses.o__Caudovirales.f__Myoviridae.g__Cp220likevirus, k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Fervidicella, k__Bacteria.p__Acidobacteria.c__Holophagae.o__Holophagales.f__Holophagaceae.g__Geothrix, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Cedecea, k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Catabacteriaceae.g__Catabacter, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Coxiellaceae.g__Diplorickettsia, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Tachikawaea, k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Rikenellaceae.g__Rikenella, k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Caminibacter, k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Belliella, k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinosynnema, k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natronobacterium, k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Bifidobacteriales.f__Bifidobacteriaceae.g__Alloscardovia, k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Fusobacteriaceae.g__Cetobacterium, k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Leptotrichiaceae.g__Streptobacillus, k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanolacinia, k__Archaea.p__Euryarchaeota.c__Methanococci.o__Methanococcales.f__Methanocaldococcaceae.g__Methanotorris, k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Halocynthiibacter, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Pseudacidovorax, k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudophaeobacter, k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Hydrogenothermaceae.g__Persephonella, k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pelagibaca, k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Flaviramulus, k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.g__Candidatus_Babela, k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiales_Family_XIII._Incertae_Sedis.g__Anaerovorax, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Candidatus_Evansia, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Arenimonas, k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halomicrobium, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Alkalilimnicola, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Brenneria, k__Bacteria.p__Chrysiogenetes.c__Chrysiogenetes.o__Chrysiogenales.f__Chrysiogenaceae.g__Chrysiogenes, k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Gottschalkia, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomicrobium, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Xenophilus, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Moellerella, k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Microchaetaceae.g__Microchaete, k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Oxobacter, k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Lebetimonas, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Morococcus, k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Ulvibacter, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Rubrivivax, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Marinagarivorans, k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Solitalea, k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Thermoplasmatales.f__Ferroplasmaceae.g__Ferroplasma, k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanoregulaceae.g__Methanosphaerula, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Dechloromonas, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Azovibrio, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Hylemonella, k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Sulfuricurvum, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Leminorella, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Sphaerotilus, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Halieaceae.g__Congregibacter, k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Psychrobacillus, k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Microtetraspora, k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Odoribacteraceae.g__Butyricimonas, k__Bacteria.p__Chloroflexi.c__Ardenticatenia.o__Ardenticatenales.f__Ardenticatenaceae.g__Ardenticatena, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Thauera, k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Paucisalibacillus
## 2023-03-15 20:06:26 INFO::Total filtered features with variance filtering: 0
## 2023-03-15 20:06:26 INFO::Filtered feature names from variance filtering:
## 2023-03-15 20:06:26 INFO::Running selected normalization method: NONE
## 2023-03-15 20:06:26 INFO::Applying z-score to standardize continuous metadata
## 2023-03-15 20:06:26 INFO::Running selected transform method: NONE
## 2023-03-15 20:06:26 INFO::Running selected analysis method: LM
## 2023-03-15 20:06:26 INFO::Creating cluster of 6 R processes
## 2023-03-15 20:06:52 INFO::Counting total values for each feature
## 2023-03-15 20:06:52 WARNING::Deleting existing residuals file: Temp/likely_group_PC/residuals.rds
## 2023-03-15 20:06:52 INFO::Writing residuals to file Temp/likely_group_PC/residuals.rds
## 2023-03-15 20:06:52 WARNING::Deleting existing fitted file: Temp/likely_group_PC/fitted.rds
## 2023-03-15 20:06:52 INFO::Writing fitted values to file Temp/likely_group_PC/fitted.rds
## 2023-03-15 20:06:52 WARNING::Deleting existing ranef file: Temp/likely_group_PC/ranef.rds
## 2023-03-15 20:06:52 INFO::Writing extracted random effects to file Temp/likely_group_PC/ranef.rds
## 2023-03-15 20:06:52 INFO::Writing all results to file (ordered by increasing q-values): Temp/likely_group_PC/all_results.tsv
## 2023-03-15 20:06:52 INFO::Writing the significant results (those which are less than or equal to the threshold of 0.250000 ) to file (ordered by increasing q-values): Temp/likely_group_PC/significant_results.tsv
## 2023-03-15 20:06:52 INFO::Writing heatmap of significant results to file: Temp/likely_group_PC/heatmap.pdf
## Warning in xtfrm.data.frame(x): cannot xtfrm data frames
## [1] "There is not enough metadata in the associations to create a heatmap plot. Please review the associations in text output file."
## 2023-03-15 20:06:52 INFO::Writing association plots (one for each significant association) to output folder: Temp/likely_group_PC
## 2023-03-15 20:06:52 INFO::Plotting associations from most to least significant, grouped by metadata
## 2023-03-15 20:06:52 INFO::Plotting data for metadata number 1, PC_combined
## 2023-03-15 20:06:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Sfi1unalikevirus
## 2023-03-15 20:06:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Poxviridae.g__Parapoxvirus
## 2023-03-15 20:06:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Bicaudaviridae.g__Bicaudavirus
## 2023-03-15 20:06:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Circoviridae.g__Gyrovirus
## 2023-03-15 20:06:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Caulimoviridae.g__Badnavirus
## 2023-03-15 20:06:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Papillomaviridae.g__Betapapillomavirus
## 2023-03-15 20:06:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Bcep22likevirus
## 2023-03-15 20:06:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Ligamenvirales.f__Lipothrixviridae.g__Deltalipothrixvirus
## 2023-03-15 20:06:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Poxviridae.g__Cervidpoxvirus
## 2023-03-15 20:06:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__T5likevirus
## 2023-03-15 20:06:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Papillomaviridae.g__Mupapillomavirus
## 2023-03-15 20:06:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Lambdalikevirus
## 2023-03-15 20:06:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Papillomaviridae.g__Phipapillomavirus
## 2023-03-15 20:06:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Anelloviridae.g__Alphatorquevirus
## 2023-03-15 20:06:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.g__Pithovirus
## 2023-03-15 20:06:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Barnyardlikevirus
## 2023-03-15 20:06:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Reoviridae.g__Cypovirus
## 2023-03-15 20:06:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Iltovirus
## 2023-03-15 20:06:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Closteroviridae.g__Closterovirus
## 2023-03-15 20:06:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Viunalikevirus
## 2023-03-15 20:06:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Phicbklikevirus
## 2023-03-15 20:06:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Fuselloviridae.g__Alphafusellovirus
## 2023-03-15 20:06:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Retroviridae.g__Lentivirus
## 2023-03-15 20:06:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Luteoviridae.g__Polerovirus
## 2023-03-15 20:06:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Geminiviridae.g__Begomovirus
## 2023-03-15 20:06:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Andromedalikevirus
## 2023-03-15 20:06:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Iridoviridae.g__Lymphocystivirus
## 2023-03-15 20:06:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Twortlikevirus
## 2023-03-15 20:06:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Cheravirus
## 2023-03-15 20:06:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Ligamenvirales.f__Rudiviridae.g__Rudivirus
## 2023-03-15 20:06:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Closteroviridae.g__Ampelovirus
## 2023-03-15 20:06:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Phietalikevirus
## 2023-03-15 20:06:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Papillomaviridae.g__Gammapapillomavirus
## 2023-03-15 20:06:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Bunyaviridae.g__Hantavirus
## 2023-03-15 20:06:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Sfi21dtunalikevirus
## 2023-03-15 20:06:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Tymovirales.f__Betaflexiviridae.g__Foveavirus
## 2023-03-15 20:06:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Virgaviridae.g__Pecluvirus
## 2023-03-15 20:06:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Skunalikevirus
## 2023-03-15 20:06:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Tymovirales.f__Tymoviridae.g__Marafivirus
## 2023-03-15 20:06:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Phikzlikevirus
## 2023-03-15 20:06:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Orthomyxoviridae.g__Influenzavirus_C
## 2023-03-15 20:06:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phi29likevirus
## 2023-03-15 20:06:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Tectiviridae.g__Tectivirus
## 2023-03-15 20:06:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Caulimoviridae.g__Cavemovirus
## 2023-03-15 20:06:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Anelloviridae.g__Betatorquevirus
## 2023-03-15 20:06:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Caulimoviridae.g__Caulimovirus
## 2023-03-15 20:06:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Pbunalikevirus
## 2023-03-15 20:06:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Reoviridae.g__Phytoreovirus
## 2023-03-15 20:06:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Bromoviridae.g__Alfamovirus
## 2023-03-15 20:06:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Sp6likevirus
## 2023-03-15 20:06:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Sphaerolipoviridae.g__Gammasphaerolipovirus
## 2023-03-15 20:06:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Flaviviridae.g__Pegivirus
## 2023-03-15 20:06:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Mononegavirales.f__Rhabdoviridae.g__Vesiculovirus
## 2023-03-15 20:06:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Mononegavirales.f__Rhabdoviridae.g__Lyssavirus
## 2023-03-15 20:06:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Hepadnaviridae.g__Orthohepadnavirus
## 2023-03-15 20:06:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Tymovirales.f__Alphaflexiviridae.g__Allexivirus
## 2023-03-15 20:06:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Parvoviridae.g__Ambidensovirus
## 2023-03-15 20:06:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Comovirus
## 2023-03-15 20:06:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.g__Polemovirus
## 2023-03-15 20:06:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Leviviridae.g__Levivirus
## 2023-03-15 20:06:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phieco32likevirus
## 2023-03-15 20:06:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Reoviridae.g__Aquareovirus
## 2023-03-15 20:06:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Bromoviridae.g__Ilarvirus
## 2023-03-15 20:06:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Phic3unalikevirus
## 2023-03-15 20:06:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Narnaviridae.g__Narnavirus
## 2023-03-15 20:06:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Totiviridae.g__Totivirus
## 2023-03-15 20:06:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Chilikevirus
## 2023-03-15 20:06:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Potyviridae.g__Tritimovirus
## 2023-03-15 20:06:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Viroids.f__Pospiviroidae.g__Coleviroid
## 2023-03-15 20:06:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Papillomaviridae.g__Dyopipapillomavirus
## 2023-03-15 20:06:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Siccibacter
## 2023-03-15 20:06:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Neosynechococcus
## 2023-03-15 20:06:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Dolichospermum
## 2023-03-15 20:06:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Altibacter
## 2023-03-15 20:06:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Methanomassiliicoccales.f__Methanomassiliicoccaceae.g__Candidatus_Methanomethylophilus
## 2023-03-15 20:06:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Nitritalea
## 2023-03-15 20:06:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Mangrovibacter
## 2023-03-15 20:06:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Pseudoramibacter
## 2023-03-15 20:07:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfospira
## 2023-03-15 20:07:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Arenitalea
## 2023-03-15 20:07:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Thermoactinomycetaceae.g__Shimazuella
## 2023-03-15 20:07:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Gaetbulibacter
## 2023-03-15 20:07:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Basilea
## 2023-03-15 20:07:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Alicyclobacillaceae.g__Effusibacillus
## 2023-03-15 20:07:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitinibacter
## 2023-03-15 20:07:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Myxosarcina
## 2023-03-15 20:07:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Gayadomonas
## 2023-03-15 20:07:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Jeotgalibacillus
## 2023-03-15 20:07:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Paeniglutamicibacter
## 2023-03-15 20:07:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halobellus
## 2023-03-15 20:07:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Archaeoglobi.o__Archaeoglobales.f__Archaeoglobaceae.g__Ferroglobus
## 2023-03-15 20:07:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Sediminibacillus
## 2023-03-15 20:07:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methanosarcinaceae.g__Methanohalobium
## 2023-03-15 20:07:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Robiginitalea
## 2023-03-15 20:07:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Caldimicrobium
## 2023-03-15 20:07:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Candidatus_Phaeomarinobacter
## 2023-03-15 20:07:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Candidatus_Koribacter
## 2023-03-15 20:07:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermabacteraceae.g__Helcobacillus
## 2023-03-15 20:07:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Centipeda
## 2023-03-15 20:07:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Nocardiopsaceae.g__Allosalinactinospora
## 2023-03-15 20:07:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halogranum
## 2023-03-15 20:07:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Nautilia
## 2023-03-15 20:07:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Desulfurobacteriales.f__Desulfurobacteriaceae.g__Thermovibrio
## 2023-03-15 20:07:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Aliiroseovarius
## 2023-03-15 20:07:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Thaumarchaeota.o__Nitrosopumilales.f__Nitrosopumilaceae.g__Candidatus_Nitrosoarchaeum
## 2023-03-15 20:07:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Wolinella
## 2023-03-15 20:07:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Thaumarchaeota.o__Nitrosopumilales.f__Nitrosopumilaceae.g__Nitrosopumilus
## 2023-03-15 20:07:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Marinococcus
## 2023-03-15 20:07:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfobacula
## 2023-03-15 20:07:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanoculleus
## 2023-03-15 20:07:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Aquifex
## 2023-03-15 20:07:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Shuttleworthia
## 2023-03-15 20:07:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylovorus
## 2023-03-15 20:07:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.o__Thermomicrobiales.f__Thermomicrobiaceae.g__Thermomicrobium
## 2023-03-15 20:07:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halogeometricum
## 2023-03-15 20:07:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Thermocrinis
## 2023-03-15 20:07:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanofollis
## 2023-03-15 20:07:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Mesonia
## 2023-03-15 20:07:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Basfia
## 2023-03-15 20:07:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Candidatus_Atelocyanobacterium
## 2023-03-15 20:07:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Allobaculum
## 2023-03-15 20:07:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Coriobacterium
## 2023-03-15 20:07:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Haloplanus
## 2023-03-15 20:07:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Flagellimonas
## 2023-03-15 20:07:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Thermoproteales.f__Thermoproteaceae.g__Vulcanisaeta
## 2023-03-15 20:07:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Spongiibacteraceae.g__Zhongshania
## 2023-03-15 20:07:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Rummeliibacillus
## 2023-03-15 20:07:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfurivibrio
## 2023-03-15 20:07:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Salinibacillus
## 2023-03-15 20:07:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Pseudobutyrivibrio
## 2023-03-15 20:07:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Kosmotogales.f__Kosmotogaceae.g__Mesotoga
## 2023-03-15 20:07:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Paracaedibacteraceae.g__Candidatus_Odyssella
## 2023-03-15 20:07:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Dielma
## 2023-03-15 20:07:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Terribacillus
## 2023-03-15 20:07:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Acidilobales.f__Acidilobaceae.g__Acidilobus
## 2023-03-15 20:07:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanoplanus
## 2023-03-15 20:07:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseibacterium
## 2023-03-15 20:07:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Lacimicrobium
## 2023-03-15 20:07:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Halostagnicola
## 2023-03-15 20:07:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Adlercreutzia
## 2023-03-15 20:07:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Candidatus_Photodesmus
## 2023-03-15 20:07:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Nereida
## 2023-03-15 20:07:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Cloacibacillus
## 2023-03-15 20:07:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Thaumarchaeota.g__Candidatus_Nitrosotenuis
## 2023-03-15 20:07:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Thermoproteales.f__Thermoproteaceae.g__Caldivirga
## 2023-03-15 20:07:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Subdoligranulum
## 2023-03-15 20:07:07 INFO::Creating boxplot for categorical data, PC_combined vs contaminant1Harvard
## 2023-03-15 20:07:07 INFO::Creating boxplot for categorical data, PC_combined vs contaminant2HarvardCanadaBaylorWashU
## 2023-03-15 20:07:07 INFO::Creating boxplot for categorical data, PC_combined vs contaminant3AllSeqCenters
## 2023-03-15 20:07:07 INFO::Creating boxplot for categorical data, PC_combined vs contaminant4RandomSpikesHarvard
## 2023-03-15 20:07:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__P100virus
## 2023-03-15 20:07:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Bunyaviridae.g__Phlebovirus
## 2023-03-15 20:07:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanoregulaceae.g__Methanolinea
## 2023-03-15 20:07:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Tymovirales.f__Betaflexiviridae.g__Trichovirus
## 2023-03-15 20:07:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Aphthovirus
## 2023-03-15 20:07:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halobacterium
## 2023-03-15 20:07:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Natronomonas
## 2023-03-15 20:07:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Potyviridae.g__Bymovirus
## 2023-03-15 20:07:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__N4likevirus
## 2023-03-15 20:07:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Halolactibacillus
## 2023-03-15 20:07:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Candidatus_Methylopumilus
## 2023-03-15 20:07:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.g__Hoyosella
## 2023-03-15 20:07:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Sellimonas
## 2023-03-15 20:07:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Halopiger
## 2023-03-15 20:07:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Nisaea
## 2023-03-15 20:07:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phikmvlikevirus
## 2023-03-15 20:07:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Lentzea
## 2023-03-15 20:07:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Thalassomonas
## 2023-03-15 20:07:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Haloarcula
## 2023-03-15 20:07:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Gramella
## 2023-03-15 20:07:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Coprobacter
## 2023-03-15 20:07:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Reinekea
## 2023-03-15 20:07:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Pyrococcus
## 2023-03-15 20:07:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomarinum
## 2023-03-15 20:07:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Holdemania
## 2023-03-15 20:07:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Amphritea
## 2023-03-15 20:07:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Saccharospirillum
## 2023-03-15 20:07:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Thalassolituus
## 2023-03-15 20:07:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Balneatrix
## 2023-03-15 20:07:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Inoviridae.g__Inovirus
## 2023-03-15 20:07:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Aromatoleum
## 2023-03-15 20:07:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Legionellaceae.g__Tatlockia
## 2023-03-15 20:07:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Candidatus_Accumulibacter
## 2023-03-15 20:07:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Bermanella
## 2023-03-15 20:07:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Herpesvirales.f__Malacoherpesviridae.g__Ostreavirus
## 2023-03-15 20:07:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.g__Bacilladnavirus
## 2023-03-15 20:07:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natronorubrum
## 2023-03-15 20:07:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Zymobacter
## 2023-03-15 20:07:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Spongiibacteraceae.g__Dasania
## 2023-03-15 20:07:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Prosthecochloris
## 2023-03-15 20:07:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ponticoccus
## 2023-03-15 20:07:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Sideroxydans
## 2023-03-15 20:07:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halanaeroarchaeum
## 2023-03-15 20:07:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Puniceibacterium
## 2023-03-15 20:07:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Obesumbacterium
## 2023-03-15 20:07:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.g__Thermosulfidibacter
## 2023-03-15 20:07:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Thermoproteales.f__Thermofilaceae.g__Thermofilum
## 2023-03-15 20:07:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.g__Aciduliprofundum
## 2023-03-15 20:07:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Actinopolymorpha
## 2023-03-15 20:07:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Cyclobacterium
## 2023-03-15 20:07:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Stigonematales.g__Mastigocladopsis
## 2023-03-15 20:07:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Thermincola
## 2023-03-15 20:07:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfonatronospira
## 2023-03-15 20:07:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Thalassotalea
## 2023-03-15 20:07:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Tolumonas
## 2023-03-15 20:07:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Mesoaciditogales.f__Mesoaciditogaceae.g__Mesoaciditoga
## 2023-03-15 20:07:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Cryomorphaceae.g__Owenweeksia
## 2023-03-15 20:07:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prolixibacteraceae.g__Prolixibacter
## 2023-03-15 20:07:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Dactylococcopsis
## 2023-03-15 20:07:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Afifella
## 2023-03-15 20:07:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Salinimonas
## 2023-03-15 20:07:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.o__Haloplasmatales.f__Haloplasmataceae.g__Haloplasma
## 2023-03-15 20:07:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Catenovulum
## 2023-03-15 20:07:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatiglans
## 2023-03-15 20:07:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Yokenella
## 2023-03-15 20:07:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Azonexus
## 2023-03-15 20:07:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Litoreibacter
## 2023-03-15 20:07:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.c__Spartobacteria.g__Candidatus_Xiphinematobacter
## 2023-03-15 20:07:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Oxalobacteraceae.g__Oxalobacter
## 2023-03-15 20:07:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitiniphilus
## 2023-03-15 20:07:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Pyrodictiaceae.g__Pyrodictium
## 2023-03-15 20:07:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Thermotogaceae.g__Pseudothermotoga
## 2023-03-15 20:07:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Marinospirillum
## 2023-03-15 20:07:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Pelodictyon
## 2023-03-15 20:07:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Chloroflexia.o__Chloroflexales.f__Oscillochloridaceae.g__Oscillochloris
## 2023-03-15 20:07:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halarchaeum
## 2023-03-15 20:07:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Lymphocryptovirus
## 2023-03-15 20:07:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halalkalicoccus
## 2023-03-15 20:07:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.f__Competibacteraceae.g__Candidatus_Competibacter
## 2023-03-15 20:07:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Arhodomonas
## 2023-03-15 20:07:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Hydrogenovibrio
## 2023-03-15 20:07:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.g__Thermobaculum
## 2023-03-15 20:07:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Maritalea
## 2023-03-15 20:07:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.g__Methyloceanibacter
## 2023-03-15 20:07:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Nocardiopsaceae.g__Streptomonospora
## 2023-03-15 20:07:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylothermaceae.g__Methylohalobius
## 2023-03-15 20:07:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Citreicella
## 2023-03-15 20:07:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatirhabdium
## 2023-03-15 20:07:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Renibacterium
## 2023-03-15 20:07:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Tistrella
## 2023-03-15 20:07:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiocystis
## 2023-03-15 20:07:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Leeia
## 2023-03-15 20:07:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bradyrhizobiaceae.g__Oligotropha
## 2023-03-15 20:07:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Rudanella
## 2023-03-15 20:07:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Aliihoeflea
## 2023-03-15 20:07:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Ignavibacteriae.c__Ignavibacteria.o__Ignavibacteriales.f__Melioribacteraceae.g__Melioribacter
## 2023-03-15 20:07:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Sedimenticola
## 2023-03-15 20:07:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Aliiglaciecola
## 2023-03-15 20:07:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatitalea
## 2023-03-15 20:07:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Rubidibacter
## 2023-03-15 20:07:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Deferribacter
## 2023-03-15 20:07:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Agarivorans
## 2023-03-15 20:07:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Blastopirellula
## 2023-03-15 20:07:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.c__Spartobacteria.g__Terrimicrobium
## 2023-03-15 20:07:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Microvirgula
## 2023-03-15 20:07:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Youngiibacter
## 2023-03-15 20:07:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Thaumarchaeota.g__Candidatus_Nitrosopelagicus
## 2023-03-15 20:07:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Glycomycetales.f__Glycomycetaceae.g__Haloglycomyces
## 2023-03-15 20:07:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Geovibrio
## 2023-03-15 20:07:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Mimiviridae.g__Mimivirus
## 2023-03-15 20:07:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Isosphaeraceae.g__Singulisphaera
## 2023-03-15 20:07:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Leeuwenhoekiella
## 2023-03-15 20:07:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Stanieria
## 2023-03-15 20:07:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Acidilobales.f__Caldisphaeraceae.g__Caldisphaera
## 2023-03-15 20:07:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Marinimicrobium
## 2023-03-15 20:07:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Gynuella
## 2023-03-15 20:07:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Vibrio
## 2023-03-15 20:07:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Salinivibrio
## 2023-03-15 20:07:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Cryobacterium
## 2023-03-15 20:07:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Flexilinea
## 2023-03-15 20:07:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Bdellovibrionales.f__Bacteriovoracaceae.g__Bacteriovorax
## 2023-03-15 20:07:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Spirochaetaceae.g__Treponema
## 2023-03-15 20:07:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Chelonobacter
## 2023-03-15 20:07:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Cyanobacterium
## 2023-03-15 20:07:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Thermopetrobacter
## 2023-03-15 20:07:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Moranella
## 2023-03-15 20:07:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Campylobacteraceae.g__Sulfurospirillum
## 2023-03-15 20:07:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Bromoviridae.g__Oleavirus
## 2023-03-15 20:07:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Longilinea
## 2023-03-15 20:07:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Gallionella
## 2023-03-15 20:07:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Isosphaeraceae.g__Isosphaera
## 2023-03-15 20:07:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Carnobacteriaceae.g__Alloiococcus
## 2023-03-15 20:07:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Derxia
## 2023-03-15 20:07:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Gemmata
## 2023-03-15 20:07:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Crocinitomicaceae.g__Crocinitomix
## 2023-03-15 20:07:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Bromoviridae.g__Cucumovirus
## 2023-03-15 20:07:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Clostridium
## 2023-03-15 20:07:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Holdemanella
## 2023-03-15 20:07:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Thaumarchaeota.c__Nitrososphaeria.o__Nitrososphaerales.f__Nitrososphaeraceae.g__Nitrososphaera
## 2023-03-15 20:07:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Cryocola
## 2023-03-15 20:07:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methanosarcinaceae.g__Methanohalophilus
## 2023-03-15 20:07:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Sphingorhabdus
## 2023-03-15 20:07:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Amphibacillus
## 2023-03-15 20:07:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Deefgea
## 2023-03-15 20:07:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Actinotignum
## 2023-03-15 20:07:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_IV._Incertae_Sedis.g__Mahella
## 2023-03-15 20:07:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Anaerophaga
## 2023-03-15 20:07:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Novispirillum
## 2023-03-15 20:07:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Herbiconiux
## 2023-03-15 20:07:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_III._Incertae_Sedis.g__Caldicellulosiruptor
## 2023-03-15 20:07:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Leadbetterella
## 2023-03-15 20:07:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudorhodobacter
## 2023-03-15 20:07:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Kurthia
## 2023-03-15 20:07:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Bdellovibrionales.f__Halobacteriovoraceae.g__Halobacteriovorax
## 2023-03-15 20:07:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Hafnia
## 2023-03-15 20:07:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Chlamydiaceae.g__Chlamydia
## 2023-03-15 20:07:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Parvularculales.f__Parvularculaceae.g__Parvularcula
## 2023-03-15 20:07:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Mannheimia
## 2023-03-15 20:07:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Riesia
## 2023-03-15 20:07:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.o__Bacteroidetes_Order_II._Incertae_sedis.f__Rhodothermaceae.g__Salisaeta
## 2023-03-15 20:07:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Kerstersia
## 2023-03-15 20:07:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Ideonella
## 2023-03-15 20:07:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Leuconostocaceae.g__Leuconostoc
## 2023-03-15 20:07:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Rhodovibrio
## 2023-03-15 20:07:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Aestuariivita
## 2023-03-15 20:07:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Dermatophilus
## 2023-03-15 20:07:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Myxococcaceae.g__Corallococcus
## 2023-03-15 20:07:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Allokutzneria
## 2023-03-15 20:07:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Hydrogenibacillus
## 2023-03-15 20:07:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Oxalobacteraceae.g__Pseudoduganella
## 2023-03-15 20:07:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Bacteroidaceae.g__Bacteroides
## 2023-03-15 20:07:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Flaviflexus
## 2023-03-15 20:07:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Enterovirus
## 2023-03-15 20:07:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Acaricomes
## 2023-03-15 20:07:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Salipiger
## 2023-03-15 20:07:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Hellea
## 2023-03-15 20:07:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Veillonellales.f__Veillonellaceae.g__Megasphaera
## 2023-03-15 20:07:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Candidatus_Puniceispirillum
## 2023-03-15 20:07:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Mycobacteriaceae.g__Mycobacterium
## 2023-03-15 20:07:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.g__Timonella
## 2023-03-15 20:07:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Sanguibacteroides
## 2023-03-15 20:07:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Aurantimonadaceae.g__Fulvimarina
## 2023-03-15 20:07:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Hydrogenobacter
## 2023-03-15 20:07:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Poxviridae.g__Alphaentomopoxvirus
## 2023-03-15 20:07:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Caliciviridae.g__Vesivirus
## 2023-03-15 20:07:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Fermentimonas
## 2023-03-15 20:07:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Candidatus_Ruthia
## 2023-03-15 20:07:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Aerococcaceae.g__Eremococcus
## 2023-03-15 20:07:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Desulfuromonadaceae.g__Desulfuromonas
## 2023-03-15 20:07:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Cyanobium
## 2023-03-15 20:07:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Halotalea
## 2023-03-15 20:07:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanoregulaceae.g__Methanoregula
## 2023-03-15 20:07:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Luteibacter
## 2023-03-15 20:07:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Pseudaminobacter
## 2023-03-15 20:07:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Proteus
## 2023-03-15 20:07:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Paramesorhizobium
## 2023-03-15 20:07:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Joostella
## 2023-03-15 20:07:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Ammonifex
## 2023-03-15 20:07:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Pyramidobacter
## 2023-03-15 20:07:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Acidocella
## 2023-03-15 20:07:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Thermanaerothrix
## 2023-03-15 20:07:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Phaeodactylibacter
## 2023-03-15 20:07:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sedimentitalea
## 2023-03-15 20:07:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Eggerthia
## 2023-03-15 20:07:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ketogulonicigenium
## 2023-03-15 20:07:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Granulibacter
## 2023-03-15 20:07:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Thermosynechococcus
## 2023-03-15 20:07:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Mitsuaria
## 2023-03-15 20:07:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.o__Bacteroidetes_Order_II._Incertae_sedis.f__Rhodothermaceae.g__Salinibacter
## 2023-03-15 20:07:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Spirochaetaceae.g__Salinispira
## 2023-03-15 20:07:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylococcus
## 2023-03-15 20:07:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Bifidobacteriales.f__Bifidobacteriaceae.g__Parascardovia
## 2023-03-15 20:07:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Caulobacterales.f__Caulobacteraceae.g__Woodsholea
## 2023-03-15 20:07:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Echinicola
## 2023-03-15 20:07:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Thermomonosporaceae.g__Thermomonospora
## 2023-03-15 20:07:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Chroococcidiopsis
## 2023-03-15 20:07:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Proteiniclasticum
## 2023-03-15 20:07:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Jejuia
## 2023-03-15 20:07:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halanaerobiaceae.g__Halothermothrix
## 2023-03-15 20:07:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Legionellaceae.g__Fluoribacter
## 2023-03-15 20:07:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Hepeviridae.g__Piscihepevirus
## 2023-03-15 20:07:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Pleurocapsa
## 2023-03-15 20:07:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Gluconacetobacter
## 2023-03-15 20:07:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Wohlfahrtiimonas
## 2023-03-15 20:07:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Haloterrigena
## 2023-03-15 20:07:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Fictibacillus
## 2023-03-15 20:07:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.g__Nitratiruptor
## 2023-03-15 20:07:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Xylanimonas
## 2023-03-15 20:07:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfovibrionaceae.g__Lawsonia
## 2023-03-15 20:07:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Colwellia
## 2023-03-15 20:07:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Ignavibacteriae.c__Ignavibacteria.o__Ignavibacteriales.f__Ignavibacteriaceae.g__Ignavibacterium
## 2023-03-15 20:07:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Silanimonas
## 2023-03-15 20:07:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Thioploca
## 2023-03-15 20:07:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Ignatzschineria
## 2023-03-15 20:07:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Chloroherpeton
## 2023-03-15 20:07:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Sediminibacter
## 2023-03-15 20:07:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Aeromonas
## 2023-03-15 20:07:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Mariniradius
## 2023-03-15 20:07:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Mimiviridae.g__Cafeteriavirus
## 2023-03-15 20:07:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.g__Kallipyga
## 2023-03-15 20:07:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Bunyaviridae.g__Orthobunyavirus
## 2023-03-15 20:07:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Aquamavirus
## 2023-03-15 20:07:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Thermales.f__Thermaceae.g__Marinithermus
## 2023-03-15 20:07:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Yersinia
## 2023-03-15 20:07:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Polydnaviridae.g__Ichnovirus
## 2023-03-15 20:07:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Siansivirga
## 2023-03-15 20:07:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Wolbachia
## 2023-03-15 20:07:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Aquamicrobium
## 2023-03-15 20:07:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pragia
## 2023-03-15 20:07:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylovulum
## 2023-03-15 20:07:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.g__Nitratifractor
## 2023-03-15 20:07:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Kineosporiales.f__Kineosporiaceae.g__Kineosporia
## 2023-03-15 20:07:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfocapsa
## 2023-03-15 20:07:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Paraoerskovia
## 2023-03-15 20:07:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Leptolinea
## 2023-03-15 20:07:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Candidatus_Stoquefichus
## 2023-03-15 20:07:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Chelativorans
## 2023-03-15 20:07:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Listeriaceae.g__Listeria
## 2023-03-15 20:07:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Franconibacter
## 2023-03-15 20:07:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Rhodothermaeota.c__Balneolia.o__Balneolales.f__Balneolaceae.g__Balneola
## 2023-03-15 20:07:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Shimwellia
## 2023-03-15 20:07:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sediminimonas
## 2023-03-15 20:07:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Archaeoglobi.o__Archaeoglobales.f__Archaeoglobaceae.g__Geoglobus
## 2023-03-15 20:07:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermodesulfobiaceae.g__Thermodesulfobium
## 2023-03-15 20:07:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Sporomusaceae.g__Pelosinus
## 2023-03-15 20:07:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Aeribacillus
## 2023-03-15 20:07:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylobacillus
## 2023-03-15 20:07:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Terasakiella
## 2023-03-15 20:07:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Kandleria
## 2023-03-15 20:07:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Candidatus_Neoehrlichia
## 2023-03-15 20:07:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Dethiosulfovibrio
## 2023-03-15 20:07:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Denitrobacterium
## 2023-03-15 20:07:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Riemerella
## 2023-03-15 20:07:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Gordoniaceae.g__Gordonia
## 2023-03-15 20:07:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Uliginosibacterium
## 2023-03-15 20:07:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bradyrhizobiaceae.g__Tardiphaga
## 2023-03-15 20:07:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Lentibacillus
## 2023-03-15 20:07:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudooceanicola
## 2023-03-15 20:07:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Richelia
## 2023-03-15 20:07:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Spongiibacteraceae.g__Spongiibacter
## 2023-03-15 20:07:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natrinema
## 2023-03-15 20:07:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Saccharibacter
## 2023-03-15 20:07:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Arenaviridae.g__Arenavirus
## 2023-03-15 20:07:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Histophilus
## 2023-03-15 20:07:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Akkermansiaceae.g__Akkermansia
## 2023-03-15 20:07:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Simplexvirus
## 2023-03-15 20:07:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudodonghicola
## 2023-03-15 20:07:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Flexistipes
## 2023-03-15 20:07:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Enterorhabdus
## 2023-03-15 20:07:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Oceaniovalibus
## 2023-03-15 20:07:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Dicistroviridae.g__Cripavirus
## 2023-03-15 20:07:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Castellaniella
## 2023-03-15 20:07:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Vitreoscilla
## 2023-03-15 20:07:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Flavisolibacter
## 2023-03-15 20:07:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Nitrincola
## 2023-03-15 20:07:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinopolysporales.f__Actinopolysporaceae.g__Actinopolyspora
## 2023-03-15 20:07:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Capnocytophaga
## 2023-03-15 20:07:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Oceanicaulis
## 2023-03-15 20:07:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Enterococcus
## 2023-03-15 20:07:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Kordiimonadales.f__Kordiimonadaceae.g__Kordiimonas
## 2023-03-15 20:07:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Cucumibacter
## 2023-03-15 20:07:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Pseudoflavonifractor
## 2023-03-15 20:07:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Thermales.f__Thermaceae.g__Oceanithermus
## 2023-03-15 20:07:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Pelistega
## 2023-03-15 20:07:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Kribbella
## 2023-03-15 20:07:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Rubritepida
## 2023-03-15 20:07:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Coprococcus
## 2023-03-15 20:07:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfohalobium
## 2023-03-15 20:07:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Fusobacteriaceae.g__Ilyobacter
## 2023-03-15 20:07:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Frateuria
## 2023-03-15 20:07:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Ishikawaella
## 2023-03-15 20:07:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Virgibacillus
## 2023-03-15 20:07:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Lewinella
## 2023-03-15 20:07:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Stappia
## 2023-03-15 20:07:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Polyangiaceae.g__Sorangium
## 2023-03-15 20:07:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Amoebophilaceae.g__Candidatus_Amoebophilus
## 2023-03-15 20:07:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfosarcina
## 2023-03-15 20:07:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Hydrogenophilales.f__Hydrogenophilaceae.g__Thiobacillus
## 2023-03-15 20:07:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Fabavirus
## 2023-03-15 20:07:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Gemmobacter
## 2023-03-15 20:07:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Xenococcus
## 2023-03-15 20:07:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Dinoroseobacter
## 2023-03-15 20:07:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Mucispirillum
## 2023-03-15 20:07:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Marvinbryantia
## 2023-03-15 20:07:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Christensenellaceae.g__Christensenella
## 2023-03-15 20:07:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Ewingella
## 2023-03-15 20:07:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Kluyvera
## 2023-03-15 20:07:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Tunalikevirus
## 2023-03-15 20:07:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Ilumatobacter
## 2023-03-15 20:07:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.f__Leptospiraceae.g__Leptonema
## 2023-03-15 20:07:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Kushneria
## 2023-03-15 20:07:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Tepidicaulis
## 2023-03-15 20:07:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Chitinimonas
## 2023-03-15 20:07:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Palaeococcus
## 2023-03-15 20:07:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophaceae.g__Syntrophus
## 2023-03-15 20:07:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.g__Sobemovirus
## 2023-03-15 20:07:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Geobacteraceae.g__Geopsychrobacter
## 2023-03-15 20:07:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Carboxydothermus
## 2023-03-15 20:07:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Propionispira
## 2023-03-15 20:07:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Isoptericola
## 2023-03-15 20:07:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Synergistes
## 2023-03-15 20:07:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Alphacoronavirus
## 2023-03-15 20:07:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Halobacteroides
## 2023-03-15 20:07:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Raoultella
## 2023-03-15 20:07:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Anaerostipes
## 2023-03-15 20:07:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Diaphorobacter
## 2023-03-15 20:07:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Steroidobacter
## 2023-03-15 20:07:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Thiolapillus
## 2023-03-15 20:07:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfonatronovibrio
## 2023-03-15 20:07:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Peptostreptococcus
## 2023-03-15 20:07:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Lunatimonas
## 2023-03-15 20:07:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Waddliaceae.g__Waddlia
## 2023-03-15 20:07:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bartonellaceae.g__Bartonella
## 2023-03-15 20:07:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Octadecabacter
## 2023-03-15 20:07:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Yonghaparkia
## 2023-03-15 20:07:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinomycetospora
## 2023-03-15 20:07:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prevotellaceae.g__Hallella
## 2023-03-15 20:07:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Yaniella
## 2023-03-15 20:07:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Candidatus_Aquiluna
## 2023-03-15 20:07:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Enteractinococcus
## 2023-03-15 20:07:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Andreprevotia
## 2023-03-15 20:07:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Apibacter
## 2023-03-15 20:07:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Elusimicrobia.c__Elusimicrobia.o__Elusimicrobiales.f__Elusimicrobiaceae.g__Elusimicrobium
## 2023-03-15 20:07:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Nitrosococcus
## 2023-03-15 20:07:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Microterricola
## 2023-03-15 20:07:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Eudoraea
## 2023-03-15 20:07:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Pusillimonas
## 2023-03-15 20:07:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Dongia
## 2023-03-15 20:07:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Acidobacterium
## 2023-03-15 20:07:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Melissococcus
## 2023-03-15 20:07:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Blastomonas
## 2023-03-15 20:07:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Gallaecimonas
## 2023-03-15 20:07:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oleiphilaceae.g__Oleiphilus
## 2023-03-15 20:07:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfarculales.f__Desulfarculaceae.g__Desulfarculus
## 2023-03-15 20:07:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Crocinitomicaceae.g__Fluviicola
## 2023-03-15 20:07:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Zymomonas
## 2023-03-15 20:07:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Parvibaculum
## 2023-03-15 20:07:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Nostoc
## 2023-03-15 20:07:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Simiduia
## 2023-03-15 20:07:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Anaerovibrio
## 2023-03-15 20:07:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pantoea
## 2023-03-15 20:07:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Leucothrix
## 2023-03-15 20:07:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylobacteriaceae.g__Microvirga
## 2023-03-15 20:07:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Blautia
## 2023-03-15 20:07:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sagittula
## 2023-03-15 20:07:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Tremovirus
## 2023-03-15 20:07:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Maritimibacter
## 2023-03-15 20:07:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Crenobacter
## 2023-03-15 20:07:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Thermodesulfatator
## 2023-03-15 20:07:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Levilinea
## 2023-03-15 20:07:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Ponticaulis
## 2023-03-15 20:07:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Helcococcus
## 2023-03-15 20:07:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Austwickia
## 2023-03-15 20:07:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Leuconostocaceae.g__Weissella
## 2023-03-15 20:07:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Anaerobacillus
## 2023-03-15 20:07:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Terrabacter
## 2023-03-15 20:07:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Microthrixaceae.g__Candidatus_Microthrix
## 2023-03-15 20:07:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Flaviviridae.g__Pestivirus
## 2023-03-15 20:07:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zunongwangia
## 2023-03-15 20:07:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfarculales.f__Desulfarculaceae.g__Dethiosulfatarculus
## 2023-03-15 20:07:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Myroides
## 2023-03-15 20:07:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Desulfurococcaceae.g__Staphylothermus
## 2023-03-15 20:07:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thalassobacter
## 2023-03-15 20:07:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Crocosphaera
## 2023-03-15 20:07:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Thermoproteales.f__Thermoproteaceae.g__Thermoproteus
## 2023-03-15 20:07:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Oerskovia
## 2023-03-15 20:07:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Salinimicrobium
## 2023-03-15 20:07:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfovibrionaceae.g__Bilophila
## 2023-03-15 20:07:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Rouxiella
## 2023-03-15 20:07:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Prauserella
## 2023-03-15 20:07:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Oceanospirillum
## 2023-03-15 20:07:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sulfitobacter
## 2023-03-15 20:07:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Salegentibacter
## 2023-03-15 20:07:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Mycoplasmatales.f__Mycoplasmataceae.g__Mycoplasma
## 2023-03-15 20:07:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chrysiogenetes.c__Chrysiogenetes.o__Chrysiogenales.f__Chrysiogenaceae.g__Desulfurispirillum
## 2023-03-15 20:07:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Sutterellaceae.g__Sutterella
## 2023-03-15 20:07:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Marseilleviridae.g__Marseillevirus
## 2023-03-15 20:07:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Niabella
## 2023-03-15 20:07:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Kamptonema
## 2023-03-15 20:07:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Fibrobacteres.c__Fibrobacteria.o__Fibrobacterales.f__Fibrobacteraceae.g__Fibrobacter
## 2023-03-15 20:07:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Catellicoccus
## 2023-03-15 20:07:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Micavibrio
## 2023-03-15 20:07:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Partitiviridae.g__Betapartitivirus
## 2023-03-15 20:07:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Sediminicola
## 2023-03-15 20:07:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Campylobacteraceae.g__Campylobacter
## 2023-03-15 20:07:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Thermoplasmatales.f__Picrophilaceae.g__Picrophilus
## 2023-03-15 20:07:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ahrensia
## 2023-03-15 20:07:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Betacoronavirus
## 2023-03-15 20:07:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Pseudohongiella
## 2023-03-15 20:07:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Poxviridae.g__Leporipoxvirus
## 2023-03-15 20:07:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Granulicella
## 2023-03-15 20:07:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Sandarakinorhabdus
## 2023-03-15 20:07:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Limnochordia.o__Limnochordales.f__Limnochordaceae.g__Limnochorda
## 2023-03-15 20:07:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanobacteriaceae.g__Methanosphaera
## 2023-03-15 20:07:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Brucellaceae.g__Ochrobactrum
## 2023-03-15 20:07:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Halonatronum
## 2023-03-15 20:07:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Asaia
## 2023-03-15 20:07:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Haemophilus
## 2023-03-15 20:07:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Simkaniaceae.g__Simkania
## 2023-03-15 20:07:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Aquimarina
## 2023-03-15 20:07:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Anaerofustis
## 2023-03-15 20:07:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Acidobacteria.c__Solibacteres.o__Solibacterales.g__Bryobacter
## 2023-03-15 20:07:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Hahellaceae.g__Hahella
## 2023-03-15 20:07:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Epulopiscium
## 2023-03-15 20:07:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cardiobacteriales.f__Cardiobacteriaceae.g__Cardiobacterium
## 2023-03-15 20:07:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Lactobacillaceae.g__Sharpea
## 2023-03-15 20:07:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Mobilicoccus
## 2023-03-15 20:07:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Terracoccus
## 2023-03-15 20:07:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Verrucosispora
## 2023-03-15 20:07:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Candidatus_Desulforudis
## 2023-03-15 20:07:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Longispora
## 2023-03-15 20:07:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Spounalikevirus
## 2023-03-15 20:07:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Caulobacterales.f__Caulobacteraceae.g__Phenylobacterium
## 2023-03-15 20:07:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Iridoviridae.g__Ranavirus
## 2023-03-15 20:07:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Aminomonas
## 2023-03-15 20:07:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Galbibacter
## 2023-03-15 20:07:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Mycoplasmatales.f__Mycoplasmataceae.g__Ureaplasma
## 2023-03-15 20:07:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Ornithobacterium
## 2023-03-15 20:07:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Escherichia
## 2023-03-15 20:07:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Thermocrispum
## 2023-03-15 20:07:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.g__Phocaeicola
## 2023-03-15 20:07:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Thalassobaculum
## 2023-03-15 20:07:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Opitutales.f__Opitutaceae.g__Cephaloticoccus
## 2023-03-15 20:07:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobiaceae.g__Haloferula
## 2023-03-15 20:07:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Starkeya
## 2023-03-15 20:07:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_III._Incertae_Sedis.g__Thermosediminibacter
## 2023-03-15 20:07:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Olleya
## 2023-03-15 20:07:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Lentisphaerae.c__Lentisphaeria.o__Lentisphaerales.f__Lentisphaeraceae.g__Lentisphaera
## 2023-03-15 20:07:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.g__Exiguobacterium
## 2023-03-15 20:07:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Hahellaceae.g__Zooshikella
## 2023-03-15 20:07:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Actinocatenispora
## 2023-03-15 20:07:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Xylella
## 2023-03-15 20:07:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Acetobacter
## 2023-03-15 20:07:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Methylibium
## 2023-03-15 20:07:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Eggerthella
## 2023-03-15 20:07:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Polyangiaceae.g__Chondromyces
## 2023-03-15 20:07:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Comamonas
## 2023-03-15 20:07:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Varicellovirus
## 2023-03-15 20:07:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomonas
## 2023-03-15 20:07:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Propionibacteriaceae.g__Propionimicrobium
## 2023-03-15 20:07:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.f__Leptospiraceae.g__Turneriella
## 2023-03-15 20:07:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Thermanaerovibrio
## 2023-03-15 20:07:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Beggiatoa
## 2023-03-15 20:07:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Aestuariibacter
## 2023-03-15 20:07:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Ehrlichia
## 2023-03-15 20:07:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Croceibacter
## 2023-03-15 20:07:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Kibdelosporangium
## 2023-03-15 20:07:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Allochromatium
## 2023-03-15 20:07:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Catelliglobosispora
## 2023-03-15 20:07:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Faecalibaculum
## 2023-03-15 20:07:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Nonlabens
## 2023-03-15 20:07:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Maribacter
## 2023-03-15 20:07:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Aquincola
## 2023-03-15 20:07:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Rubinisphaera
## 2023-03-15 20:07:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Coprobacillus
## 2023-03-15 20:07:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Shimia
## 2023-03-15 20:07:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Oleiagrimonas
## 2023-03-15 20:07:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Chania
## 2023-03-15 20:07:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Halorhodospira
## 2023-03-15 20:07:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Fodinicurvata
## 2023-03-15 20:07:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Nitrosomonadales.f__Nitrosomonadaceae.g__Nitrosospira
## 2023-03-15 20:07:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Confluentimicrobium
## 2023-03-15 20:07:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Pseudolabrys
## 2023-03-15 20:07:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Salinarchaeum
## 2023-03-15 20:07:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Brachyspirales.f__Brachyspiraceae.g__Brachyspira
## 2023-03-15 20:07:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.g__Caedibacter
## 2023-03-15 20:07:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Agrococcus
## 2023-03-15 20:07:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Virgaviridae.g__Pomovirus
## 2023-03-15 20:07:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Thermoanaerobacter
## 2023-03-15 20:07:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Entomoplasmatales.f__Entomoplasmataceae.g__Entomoplasma
## 2023-03-15 20:07:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Planktomarina
## 2023-03-15 20:07:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Croceitalea
## 2023-03-15 20:07:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Kozakia
## 2023-03-15 20:07:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Aliagarivorans
## 2023-03-15 20:07:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Holosporaceae.g__Holospora
## 2023-03-15 20:07:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseovarius
## 2023-03-15 20:07:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.g__Thermorudis
## 2023-03-15 20:07:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Candidatus_Profftella
## 2023-03-15 20:07:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Stigonematales.g__Hapalosiphon
## 2023-03-15 20:07:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Acidobacteria.c__Solibacteres.o__Solibacterales.f__Solibacteraceae.g__Candidatus_Solibacter
## 2023-03-15 20:07:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Wenxinia
## 2023-03-15 20:07:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Acidimicrobium
## 2023-03-15 20:07:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Neorickettsia
## 2023-03-15 20:07:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Pelagibacterium
## 2023-03-15 20:07:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Viridibacillus
## 2023-03-15 20:07:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseivivax
## 2023-03-15 20:07:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Thioalkalimicrobium
## 2023-03-15 20:07:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfovermiculus
## 2023-03-15 20:07:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Methylopila
## 2023-03-15 20:07:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Flavihumibacter
## 2023-03-15 20:07:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Dokdonella
## 2023-03-15 20:07:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Arenibacter
## 2023-03-15 20:07:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Desulfurococcaceae.g__Ignicoccus
## 2023-03-15 20:07:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Ornatilinea
## 2023-03-15 20:07:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Filomicrobium
## 2023-03-15 20:07:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Methyloferula
## 2023-03-15 20:07:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Gulosibacter
## 2023-03-15 20:07:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophaceae.g__Desulfomonile
## 2023-03-15 20:07:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Tenacibaculum
## 2023-03-15 20:07:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Astroviridae.g__Mamastrovirus
## 2023-03-15 20:07:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Magnetococcales.f__Magnetococcaceae.g__Magnetococcus
## 2023-03-15 20:07:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Silvibacterium
## 2023-03-15 20:07:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Sporolactobacillaceae.g__Tuberibacillus
## 2023-03-15 20:07:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Belnapia
## 2023-03-15 20:07:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Thermonemataceae.g__Thermonema
## 2023-03-15 20:07:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Adenoviridae.g__Mastadenovirus
## 2023-03-15 20:07:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Thermococcus
## 2023-03-15 20:07:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Ferrimicrobium
## 2023-03-15 20:07:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Hymenobacter
## 2023-03-15 20:07:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.g__Reyranella
## 2023-03-15 20:07:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Emticicia
## 2023-03-15 20:07:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Thermomonas
## 2023-03-15 20:07:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitinilyticum
## 2023-03-15 20:07:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Paenirhodobacter
## 2023-03-15 20:07:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Lentimicrobiaceae.g__Lentimicrobium
## 2023-03-15 20:07:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Enorma
## 2023-03-15 20:07:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Arcanobacterium
## 2023-03-15 20:07:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Magnetospira
## 2023-03-15 20:07:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Mardivirus
## 2023-03-15 20:07:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Oscillospiraceae.g__Oscillibacter
## 2023-03-15 20:07:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Pasteurella
## 2023-03-15 20:08:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Dehalococcoidia.g__Dehalogenimonas
## 2023-03-15 20:08:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Skermanella
## 2023-03-15 20:08:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Knoellia
## 2023-03-15 20:08:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Desulfurispora
## 2023-03-15 20:08:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Leifsonia
## 2023-03-15 20:08:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Roseivirga
## 2023-03-15 20:08:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Aminobacterium
## 2023-03-15 20:08:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Lutibaculum
## 2023-03-15 20:08:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Microbacterium
## 2023-03-15 20:08:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Microscilla
## 2023-03-15 20:08:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Cesiribacter
## 2023-03-15 20:08:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Citromicrobium
## 2023-03-15 20:08:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfobulbus
## 2023-03-15 20:08:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Aliterella
## 2023-03-15 20:08:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Alkaliflexus
## 2023-03-15 20:08:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Ferriphaselus
## 2023-03-15 20:08:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Rhodospirillum
## 2023-03-15 20:08:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Polycyclovorans
## 2023-03-15 20:08:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Arcticibacter
## 2023-03-15 20:08:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Rudaea
## 2023-03-15 20:08:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Gimesia
## 2023-03-15 20:08:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Actinobaculum
## 2023-03-15 20:08:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Marinilabilia
## 2023-03-15 20:08:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ruegeria
## 2023-03-15 20:08:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Hyphomicrobium
## 2023-03-15 20:08:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylobacteriaceae.g__Meganema
## 2023-03-15 20:08:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Kineosporiales.f__Kineosporiaceae.g__Angustibacter
## 2023-03-15 20:08:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Halieaceae.g__Luminiphilus
## 2023-03-15 20:08:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Spirosoma
## 2023-03-15 20:08:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophaceae.g__Desulfobacca
## 2023-03-15 20:08:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Anaerolinea
## 2023-03-15 20:08:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Flavonifractor
## 2023-03-15 20:08:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Gordonibacter
## 2023-03-15 20:08:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Maricaulis
## 2023-03-15 20:08:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Phaeospirillum
## 2023-03-15 20:08:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.o__Methylacidiphilales.f__Methylacidiphilaceae.g__Methylacidiphilum
## 2023-03-15 20:08:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Weeksella
## 2023-03-15 20:08:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Micrococcus
## 2023-03-15 20:08:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Hirschia
## 2023-03-15 20:08:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Oceanibaculum
## 2023-03-15 20:08:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Methylocella
## 2023-03-15 20:08:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Vitellibacter
## 2023-03-15 20:08:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Henriciella
## 2023-03-15 20:08:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Caldicoprobacteraceae.g__Caldicoprobacter
## 2023-03-15 20:08:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methermicoccaceae.g__Methermicoccus
## 2023-03-15 20:08:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Bellilinea
## 2023-03-15 20:08:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Jiangellales.f__Jiangellaceae.g__Jiangella
## 2023-03-15 20:08:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.g__Lawsonella
## 2023-03-15 20:08:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Tanticharoenia
## 2023-03-15 20:08:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cardiobacteriales.f__Cardiobacteriaceae.g__Dichelobacter
## 2023-03-15 20:08:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Nakamurellales.f__Nakamurellaceae.g__Nakamurella
## 2023-03-15 20:08:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Paludibacter
## 2023-03-15 20:08:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Acidihalobacter
## 2023-03-15 20:08:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Leptotrichiaceae.g__Sebaldella
## 2023-03-15 20:08:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sneathiellales.f__Sneathiellaceae.g__Sneathiella
## 2023-03-15 20:08:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Rikenellaceae.g__Mucinivorans
## 2023-03-15 20:08:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Lactobacillaceae.g__Lactobacillus
## 2023-03-15 20:08:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Roseburia
## 2023-03-15 20:08:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Ectothiorhodospira
## 2023-03-15 20:08:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Saccharomonospora
## 2023-03-15 20:08:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Plantibacter
## 2023-03-15 20:08:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Nesterenkonia
## 2023-03-15 20:08:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Maribius
## 2023-03-15 20:08:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Desulfurobacteriales.f__Desulfurobacteriaceae.g__Desulfurobacterium
## 2023-03-15 20:08:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Polyomaviridae.g__Polyomavirus
## 2023-03-15 20:08:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Aerococcaceae.g__Facklamia
## 2023-03-15 20:08:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhizobiaceae.g__Neorhizobium
## 2023-03-15 20:08:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Sediminibacterium
## 2023-03-15 20:08:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobia_subdivision_3.g__Pedosphaera
## 2023-03-15 20:08:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Kinetoplastibacterium
## 2023-03-15 20:08:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Candidatus_Korarchaeota.g__Candidatus_Korarchaeum
## 2023-03-15 20:08:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Polynucleobacter
## 2023-03-15 20:08:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.g__Tropheryma
## 2023-03-15 20:08:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Paucibacter
## 2023-03-15 20:08:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Desulfuromonadaceae.g__Pelobacter
## 2023-03-15 20:08:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Defluviimonas
## 2023-03-15 20:08:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prevotellaceae.g__Prevotella
## 2023-03-15 20:08:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanobacteriaceae.g__Methanobrevibacter
## 2023-03-15 20:08:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Frankiales.f__Sporichthyaceae.g__Sporichthya
## 2023-03-15 20:08:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhizobiaceae.g__Agrobacterium
## 2023-03-15 20:08:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Neptunomonas
## 2023-03-15 20:08:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Paludibacterium
## 2023-03-15 20:08:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halorubrum
## 2023-03-15 20:08:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Segetibacter
## 2023-03-15 20:08:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Johnsonella
## 2023-03-15 20:08:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Acetohalobium
## 2023-03-15 20:08:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Kiloniellales.f__Kiloniellaceae.g__Kiloniella
## 2023-03-15 20:08:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.o__Sphaerobacterales.f__Sphaerobacteraceae.g__Sphaerobacter
## 2023-03-15 20:08:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Haematospirillum
## 2023-03-15 20:08:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Borreliaceae.g__Borrelia
## 2023-03-15 20:08:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Muricauda
## 2023-03-15 20:08:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Clostridioides
## 2023-03-15 20:08:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Planomonospora
## 2023-03-15 20:08:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zhouia
## 2023-03-15 20:08:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Luteimonas
## 2023-03-15 20:08:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Pseudonocardia
## 2023-03-15 20:08:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Planctomyces
## 2023-03-15 20:08:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Orbales.f__Orbaceae.g__Frischella
## 2023-03-15 20:08:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Dysgonomonas
## 2023-03-15 20:08:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Vulgatibacteraceae.g__Vulgatibacter
## 2023-03-15 20:08:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Thermodesulfobacterium
## 2023-03-15 20:08:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Hamadaea
## 2023-03-15 20:08:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Glycomycetales.f__Glycomycetaceae.g__Glycomyces
## 2023-03-15 20:08:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Puniceicoccales.f__Puniceicoccaceae.g__Coraliomargarita
## 2023-03-15 20:08:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Shigella
## 2023-03-15 20:08:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Erysipelatoclostridium
## 2023-03-15 20:08:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Mitsuokella
## 2023-03-15 20:08:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Microbispora
## 2023-03-15 20:08:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Marinovum
## 2023-03-15 20:08:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Thermoactinomycetaceae.g__Thermoactinomyces
## 2023-03-15 20:08:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Deinococcales.f__Trueperaceae.g__Truepera
## 2023-03-15 20:08:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Nesiotobacter
## 2023-03-15 20:08:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Haliscomenobacter
## 2023-03-15 20:08:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Rhodoluna
## 2023-03-15 20:08:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Faecalicoccus
## 2023-03-15 20:08:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Agreia
## 2023-03-15 20:08:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Marivirga
## 2023-03-15 20:08:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Gemmatimonadetes.c__Gemmatimonadetes.o__Gemmatimonadales.f__Gemmatimonadaceae.g__Gemmatirosa
## 2023-03-15 20:08:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Catenulisporales.f__Actinospicaceae.g__Actinospica
## 2023-03-15 20:08:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Senegalimassilia
## 2023-03-15 20:08:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Pirellula
## 2023-03-15 20:08:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Odoribacteraceae.g__Odoribacter
## 2023-03-15 20:08:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Thermotogaceae.g__Thermotoga
## 2023-03-15 20:08:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Elusimicrobia.c__Endomicrobia.o__Endomicrobiales.f__Endomicrobiaceae.g__Endomicrobium
## 2023-03-15 20:08:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Phycodnaviridae.g__Prymnesiovirus
## 2023-03-15 20:08:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.g__Candidatus_Hepatobacter
## 2023-03-15 20:08:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Thiorhodospira
## 2023-03-15 20:08:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Solibacillus
## 2023-03-15 20:08:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Arsenicicoccus
## 2023-03-15 20:08:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Dictyoglomi.c__Dictyoglomia.o__Dictyoglomales.f__Dictyoglomaceae.g__Dictyoglomus
## 2023-03-15 20:08:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Anaplasma
## 2023-03-15 20:08:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Atopobiaceae.g__Atopobium
## 2023-03-15 20:08:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Methylophaga
## 2023-03-15 20:08:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseobacter
## 2023-03-15 20:08:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Catonella
## 2023-03-15 20:08:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Labrenzia
## 2023-03-15 20:08:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Kofleriaceae.g__Haliangium
## 2023-03-15 20:08:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Staphylococcaceae.g__Macrococcus
## 2023-03-15 20:08:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pluralibacter
## 2023-03-15 20:08:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Rhodobacter
## 2023-03-15 20:08:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Porticoccaceae.g__Porticoccus
## 2023-03-15 20:08:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Anaerobaculum
## 2023-03-15 20:08:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halorhabdus
## 2023-03-15 20:08:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Pseudoclavibacter
## 2023-03-15 20:08:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Paeniclostridium
## 2023-03-15 20:08:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Xanthobacter
## 2023-03-15 20:08:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Staphylococcaceae.g__Jeotgalicoccus
## 2023-03-15 20:08:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Finegoldia
## 2023-03-15 20:08:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Mangrovimonas
## 2023-03-15 20:08:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Hydrogenivirga
## 2023-03-15 20:08:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Alcaligenes
## 2023-03-15 20:08:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Chelatococcus
## 2023-03-15 20:08:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Oxalobacteraceae.g__Collimonas
## 2023-03-15 20:08:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Mizugakiibacter
## 2023-03-15 20:08:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Oceanimonas
## 2023-03-15 20:08:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Amantichitinum
## 2023-03-15 20:08:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Aerococcaceae.g__Aerococcus
## 2023-03-15 20:08:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Neisseria
## 2023-03-15 20:08:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Gracilibacillus
## 2023-03-15 20:08:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Retroviridae.g__Alpharetrovirus
## 2023-03-15 20:08:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Nitrospirae.c__Nitrospira.o__Nitrospirales.f__Nitrospiraceae.g__Candidatus_Magnetobacterium
## 2023-03-15 20:08:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Spiribacter
## 2023-03-15 20:08:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Robinsoniella
## 2023-03-15 20:08:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Pseudobacteroides
## 2023-03-15 20:08:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prolixibacteraceae.g__Sunxiuqinia
## 2023-03-15 20:08:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Thermobrachium
## 2023-03-15 20:08:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermabacteraceae.g__Dermabacter
## 2023-03-15 20:08:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Zetaproteobacteria.o__Mariprofundales.f__Mariprofundaceae.g__Mariprofundus
## 2023-03-15 20:08:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Symbiobacteriaceae.g__Symbiobacterium
## 2023-03-15 20:08:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Saccharibacillus
## 2023-03-15 20:08:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Dicipivirus
## 2023-03-15 20:08:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Bifidobacteriales.f__Bifidobacteriaceae.g__Scardovia
## 2023-03-15 20:08:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Rubritaleaceae.g__Rubritalea
## 2023-03-15 20:08:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Parvimonas
## 2023-03-15 20:08:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thioflavicoccus
## 2023-03-15 20:08:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Salimicrobium
## 2023-03-15 20:08:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zobellia
## 2023-03-15 20:08:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Propionibacteriaceae.g__Granulicoccus
## 2023-03-15 20:08:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Jonesiaceae.g__Jonesia
## 2023-03-15 20:08:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Xylophilus
## 2023-03-15 20:08:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Campylobacteraceae.g__Arcobacter
## 2023-03-15 20:08:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Falsirhodobacter
## 2023-03-15 20:08:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Nonomuraea
## 2023-03-15 20:08:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Loktanella
## 2023-03-15 20:08:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Schleiferiaceae.g__Schleiferia
## 2023-03-15 20:08:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulforegula
## 2023-03-15 20:08:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Slackia
## 2023-03-15 20:08:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Criblamydiaceae.g__Criblamydia
## 2023-03-15 20:08:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Amorphus
## 2023-03-15 20:08:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Rubellimicrobium
## 2023-03-15 20:08:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Orenia
## 2023-03-15 20:08:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Rufibacter
## 2023-03-15 20:08:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Adhaeribacter
## 2023-03-15 20:08:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Eikenella
## 2023-03-15 20:08:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Herpesvirales.f__Alloherpesviridae.g__Batrachovirus
## 2023-03-15 20:08:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Candidatus_Soleaferrea
## 2023-03-15 20:08:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanothermaceae.g__Methanothermus
## 2023-03-15 20:08:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Pseudomonadaceae.g__Oblitimonas
## 2023-03-15 20:08:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Streptococcaceae.g__Streptococcus
## 2023-03-15 20:08:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thioclava
## 2023-03-15 20:08:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Kosakonia
## 2023-03-15 20:08:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Inquilinus
## 2023-03-15 20:08:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatibacillum
## 2023-03-15 20:08:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Candidatus_Arthromitus
## 2023-03-15 20:08:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Fervidobacteriaceae.g__Thermosipho
## 2023-03-15 20:08:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Halothiobacillaceae.g__Halothiobacillus
## 2023-03-15 20:08:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Succinivibrionaceae.g__Succinivibrio
## 2023-03-15 20:08:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thalassobius
## 2023-03-15 20:08:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Moraxellaceae.g__Perlucidibaca
## 2023-03-15 20:08:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Circoviridae.g__Circovirus
## 2023-03-15 20:08:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halapricum
## 2023-03-15 20:08:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Virgaviridae.g__Tobamovirus
## 2023-03-15 20:08:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Oribacterium
## 2023-03-15 20:08:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Blastochloris
## 2023-03-15 20:08:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Actinoplanes
## 2023-03-15 20:08:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Veillonellales.f__Veillonellaceae.g__Veillonella
## 2023-03-15 20:08:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Paracaedibacteraceae.g__Candidatus_Paracaedibacter
## 2023-03-15 20:08:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Sanguibacteraceae.g__Sanguibacter
## 2023-03-15 20:08:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Edwardsiella
## 2023-03-15 20:08:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Caldiserica.c__Caldisericia.o__Caldisericales.f__Caldisericaceae.g__Caldisericum
## 2023-03-15 20:08:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Tymovirales.f__Tymoviridae.g__Tymovirus
## 2023-03-15 20:08:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Opitutales.f__Opitutaceae.g__Opitutus
## 2023-03-15 20:08:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Sporomusaceae.g__Anaeromusa
## 2023-03-15 20:08:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Pararhodospirillum
## 2023-03-15 20:08:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natronococcus
## 2023-03-15 20:08:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Papillomaviridae.g__Omegapapillomavirus
## 2023-03-15 20:08:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Pleomorphomonas
## 2023-03-15 20:08:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Sciscionella
## 2023-03-15 20:08:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Candidatus_Cloacimonetes.g__Candidatus_Cloacimonas
## 2023-03-15 20:08:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylosarcina
## 2023-03-15 20:08:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Flammeovirga
## 2023-03-15 20:08:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermacoccaceae.g__Luteipulveratus
## 2023-03-15 20:08:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Sodalis
## 2023-03-15 20:08:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Muribacter
## 2023-03-15 20:08:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Petrotogales.g__Defluviitoga
## 2023-03-15 20:08:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Buttiauxella
## 2023-03-15 20:08:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Salinisphaerales.f__Salinisphaeraceae.g__Salinisphaera
## 2023-03-15 20:08:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Fibrella
## 2023-03-15 20:08:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Sandaracinaceae.g__Sandaracinus
## 2023-03-15 20:08:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Nitratireductor
## 2023-03-15 20:08:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Robiginitomaculum
## 2023-03-15 20:08:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophobacteraceae.g__Syntrophobacter
## 2023-03-15 20:08:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Cycloclasticus
## 2023-03-15 20:08:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.g__Anaerosporomusa
## 2023-03-15 20:08:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Salivirus
## 2023-03-15 20:08:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Tatumella
## 2023-03-15 20:08:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Phycicoccus
## 2023-03-15 20:08:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Advenella
## 2023-03-15 20:08:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.g__Higrevirus
## 2023-03-15 20:08:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Alcanivoracaceae.g__Kangiella
## 2023-03-15 20:08:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Prochlorales.f__Prochlorococcaceae.g__Prochlorococcus
## 2023-03-15 20:08:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Haematobacter
## 2023-03-15 20:08:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Flexithrix
## 2023-03-15 20:08:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Celeribacter
## 2023-03-15 20:08:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Shewanellaceae.g__Shewanella
## 2023-03-15 20:08:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Helicobacter
## 2023-03-15 20:08:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Pandoraea
## 2023-03-15 20:08:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Pyrodictiaceae.g__Pyrolobus
## 2023-03-15 20:08:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfomicrobiaceae.g__Desulfomicrobium
## 2023-03-15 20:08:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Vagococcus
## 2023-03-15 20:08:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Phycodnaviridae.g__Prasinovirus
## 2023-03-15 20:08:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfurellales.f__Desulfurellaceae.g__Desulfurella
## 2023-03-15 20:08:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Cellulosilyticum
## 2023-03-15 20:08:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Thermomonosporaceae.g__Spirillospora
## 2023-03-15 20:08:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Methanomassiliicoccales.f__Methanomassiliicoccaceae.g__Methanomassiliicoccus
## 2023-03-15 20:08:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Brackiella
## 2023-03-15 20:08:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Acidobacteria.c__Blastocatellia.g__Chloracidobacterium
## 2023-03-15 20:08:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Bafinivirus
## 2023-03-15 20:08:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Veillonellales.f__Veillonellaceae.g__Dialister
## 2023-03-15 20:08:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Kineosphaera
## 2023-03-15 20:08:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Aurantimonadaceae.g__Martelella
## 2023-03-15 20:08:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Carnimonas
## 2023-03-15 20:08:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylocaldum
## 2023-03-15 20:08:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Pseudopedobacter
## 2023-03-15 20:08:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Providencia
## 2023-03-15 20:08:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_III._Incertae_Sedis.g__Thermoanaerobacterium
## 2023-03-15 20:08:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Demequinaceae.g__Lysinimicrobium
## 2023-03-15 20:08:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Geofilum
## 2023-03-15 20:08:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Lechevalieria
## 2023-03-15 20:08:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Heliobacteriaceae.g__Heliobacterium
## 2023-03-15 20:08:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiocapsa
## 2023-03-15 20:08:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Pseudarthrobacter
## 2023-03-15 20:08:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Dickeya
## 2023-03-15 20:08:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Lampropedia
## 2023-03-15 20:08:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Thermosulfurimonas
## 2023-03-15 20:08:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Phycodnaviridae.g__Chlorovirus
## 2023-03-15 20:08:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Cryptobacterium
## 2023-03-15 20:08:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Aneurinibacillus
## 2023-03-15 20:08:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Promicromonospora
## 2023-03-15 20:08:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Grimontia
## 2023-03-15 20:08:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Acidobacteria.c__Blastocatellia.g__Pyrinomonas
## 2023-03-15 20:08:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Lachnoanaerobaculum
## 2023-03-15 20:08:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Syntrophomonadaceae.g__Syntrophomonas
## 2023-03-15 20:08:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Cellulosimicrobium
## 2023-03-15 20:08:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Acidaminococcales.f__Acidaminococcaceae.g__Succinispira
## 2023-03-15 20:08:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Frigoribacterium
## 2023-03-15 20:08:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Microchaetaceae.g__Hassallia
## 2023-03-15 20:08:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Poxviridae.g__Betaentomopoxvirus
## 2023-03-15 20:08:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Collinsella
## 2023-03-15 20:08:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Geminicoccus
## 2023-03-15 20:08:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfobacter
maaslin_likely_group_putative <- function_Maaslin2(df_ACC_filter_likely_Voom_SNM, "Putative_combined", "Temp/likely_group_putative")
## [1] "Warning: Deleting existing log file: Temp/likely_group_putative/maaslin2.log"
## 2023-03-15 20:08:29 INFO::Writing function arguments to log file
## 2023-03-15 20:08:29 INFO::Verifying options selected are valid
## 2023-03-15 20:08:29 INFO::Determining format of input files
## 2023-03-15 20:08:29 INFO::Input format is data samples as rows and metadata samples as rows
## 2023-03-15 20:08:29 INFO::Formula for random effects: expr ~ (1 | SEX) + (1 | Ethnicity_Race) + (1 | AGE) + (1 | Neoplasm_Status) + (1 | Clinical_Status_3_Mo_Post.Op) + (1 | Surgical_margin) + (1 | ATYPICAL_MITOTIC_FIGURES)
## 2023-03-15 20:08:29 INFO::Formula for fixed effects: expr ~  Putative_combined
## 2023-03-15 20:08:29 INFO::Filter data based on min abundance and min prevalence
## 2023-03-15 20:08:29 INFO::Total samples in data: 77
## 2023-03-15 20:08:29 INFO::Min samples required with min abundance for a feature not to be filtered: 0.000000
## 2023-03-15 20:08:29 INFO::Total filtered features: 71
## 2023-03-15 20:08:29 INFO::Filtered feature names from abundance and prevalence filtering: k__Viruses.f__Baculoviridae.g__Deltabaculovirus, k__Viruses.o__Caudovirales.f__Myoviridae.g__I3likevirus, k__Viruses.f__Anelloviridae.g__Gammatorquevirus, k__Viruses.g__Tenuivirus, k__Viruses.f__Poxviridae.g__Capripoxvirus, k__Viruses.o__Mononegavirales.f__Nyamiviridae.g__Nyavirus, k__Viruses.g__Emaravirus, k__Viruses.o__Picornavirales.f__Secoviridae.g__Waikavirus, k__Viruses.f__Poxviridae.g__Yatapoxvirus, k__Viruses.f__Poxviridae.g__Orthopoxvirus, k__Viruses.o__Caudovirales.f__Siphoviridae.g__L5likevirus, k__Viruses.f__Hytrosaviridae.g__Muscavirus, k__Viruses.f__Closteroviridae.g__Crinivirus, k__Viruses.o__Caudovirales.f__Myoviridae.g__Cp220likevirus, k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Fervidicella, k__Bacteria.p__Acidobacteria.c__Holophagae.o__Holophagales.f__Holophagaceae.g__Geothrix, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Cedecea, k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Catabacteriaceae.g__Catabacter, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Coxiellaceae.g__Diplorickettsia, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Tachikawaea, k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Rikenellaceae.g__Rikenella, k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Caminibacter, k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Belliella, k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinosynnema, k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natronobacterium, k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Bifidobacteriales.f__Bifidobacteriaceae.g__Alloscardovia, k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Fusobacteriaceae.g__Cetobacterium, k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Leptotrichiaceae.g__Streptobacillus, k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanolacinia, k__Archaea.p__Euryarchaeota.c__Methanococci.o__Methanococcales.f__Methanocaldococcaceae.g__Methanotorris, k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Halocynthiibacter, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Pseudacidovorax, k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudophaeobacter, k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Hydrogenothermaceae.g__Persephonella, k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pelagibaca, k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Flaviramulus, k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.g__Candidatus_Babela, k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiales_Family_XIII._Incertae_Sedis.g__Anaerovorax, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Candidatus_Evansia, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Arenimonas, k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halomicrobium, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Alkalilimnicola, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Brenneria, k__Bacteria.p__Chrysiogenetes.c__Chrysiogenetes.o__Chrysiogenales.f__Chrysiogenaceae.g__Chrysiogenes, k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Gottschalkia, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomicrobium, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Xenophilus, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Moellerella, k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Microchaetaceae.g__Microchaete, k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Oxobacter, k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Lebetimonas, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Morococcus, k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Ulvibacter, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Rubrivivax, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Marinagarivorans, k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Solitalea, k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Thermoplasmatales.f__Ferroplasmaceae.g__Ferroplasma, k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanoregulaceae.g__Methanosphaerula, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Dechloromonas, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Azovibrio, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Hylemonella, k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Sulfuricurvum, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Leminorella, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Sphaerotilus, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Halieaceae.g__Congregibacter, k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Psychrobacillus, k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Microtetraspora, k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Odoribacteraceae.g__Butyricimonas, k__Bacteria.p__Chloroflexi.c__Ardenticatenia.o__Ardenticatenales.f__Ardenticatenaceae.g__Ardenticatena, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Thauera, k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Paucisalibacillus
## 2023-03-15 20:08:29 INFO::Total filtered features with variance filtering: 0
## 2023-03-15 20:08:29 INFO::Filtered feature names from variance filtering:
## 2023-03-15 20:08:29 INFO::Running selected normalization method: NONE
## 2023-03-15 20:08:29 INFO::Applying z-score to standardize continuous metadata
## 2023-03-15 20:08:29 INFO::Running selected transform method: NONE
## 2023-03-15 20:08:29 INFO::Running selected analysis method: LM
## 2023-03-15 20:08:29 INFO::Creating cluster of 6 R processes
## 2023-03-15 20:08:54 INFO::Counting total values for each feature
## 2023-03-15 20:08:54 WARNING::Deleting existing residuals file: Temp/likely_group_putative/residuals.rds
## 2023-03-15 20:08:54 INFO::Writing residuals to file Temp/likely_group_putative/residuals.rds
## 2023-03-15 20:08:54 WARNING::Deleting existing fitted file: Temp/likely_group_putative/fitted.rds
## 2023-03-15 20:08:54 INFO::Writing fitted values to file Temp/likely_group_putative/fitted.rds
## 2023-03-15 20:08:54 WARNING::Deleting existing ranef file: Temp/likely_group_putative/ranef.rds
## 2023-03-15 20:08:54 INFO::Writing extracted random effects to file Temp/likely_group_putative/ranef.rds
## 2023-03-15 20:08:54 INFO::Writing all results to file (ordered by increasing q-values): Temp/likely_group_putative/all_results.tsv
## 2023-03-15 20:08:54 INFO::Writing the significant results (those which are less than or equal to the threshold of 0.250000 ) to file (ordered by increasing q-values): Temp/likely_group_putative/significant_results.tsv
## 2023-03-15 20:08:54 INFO::Writing heatmap of significant results to file: Temp/likely_group_putative/heatmap.pdf
## Warning in xtfrm.data.frame(x): cannot xtfrm data frames
## [1] "There is not enough metadata in the associations to create a heatmap plot. Please review the associations in text output file."
## 2023-03-15 20:08:54 INFO::Writing association plots (one for each significant association) to output folder: Temp/likely_group_putative
## 2023-03-15 20:08:54 INFO::Plotting associations from most to least significant, grouped by metadata
## 2023-03-15 20:08:54 INFO::Plotting data for metadata number 1, Putative_combined
## 2023-03-15 20:08:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Sfi1unalikevirus
## 2023-03-15 20:08:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Poxviridae.g__Parapoxvirus
## 2023-03-15 20:08:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Bicaudaviridae.g__Bicaudavirus
## 2023-03-15 20:08:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Circoviridae.g__Gyrovirus
## 2023-03-15 20:08:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Caulimoviridae.g__Badnavirus
## 2023-03-15 20:08:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Papillomaviridae.g__Betapapillomavirus
## 2023-03-15 20:08:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Bcep22likevirus
## 2023-03-15 20:08:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Ligamenvirales.f__Lipothrixviridae.g__Deltalipothrixvirus
## 2023-03-15 20:08:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Poxviridae.g__Cervidpoxvirus
## 2023-03-15 20:08:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__T5likevirus
## 2023-03-15 20:08:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Papillomaviridae.g__Mupapillomavirus
## 2023-03-15 20:08:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Lambdalikevirus
## 2023-03-15 20:08:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Papillomaviridae.g__Phipapillomavirus
## 2023-03-15 20:08:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Anelloviridae.g__Alphatorquevirus
## 2023-03-15 20:08:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.g__Pithovirus
## 2023-03-15 20:08:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Barnyardlikevirus
## 2023-03-15 20:08:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Reoviridae.g__Cypovirus
## 2023-03-15 20:08:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Iltovirus
## 2023-03-15 20:08:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Closteroviridae.g__Closterovirus
## 2023-03-15 20:08:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Viunalikevirus
## 2023-03-15 20:08:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Phicbklikevirus
## 2023-03-15 20:08:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Fuselloviridae.g__Alphafusellovirus
## 2023-03-15 20:08:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Retroviridae.g__Lentivirus
## 2023-03-15 20:08:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Luteoviridae.g__Polerovirus
## 2023-03-15 20:08:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Geminiviridae.g__Begomovirus
## 2023-03-15 20:08:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Andromedalikevirus
## 2023-03-15 20:08:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Iridoviridae.g__Lymphocystivirus
## 2023-03-15 20:08:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Twortlikevirus
## 2023-03-15 20:08:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Cheravirus
## 2023-03-15 20:08:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Ligamenvirales.f__Rudiviridae.g__Rudivirus
## 2023-03-15 20:08:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Closteroviridae.g__Ampelovirus
## 2023-03-15 20:08:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Phietalikevirus
## 2023-03-15 20:08:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Papillomaviridae.g__Gammapapillomavirus
## 2023-03-15 20:08:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Bunyaviridae.g__Hantavirus
## 2023-03-15 20:08:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Sfi21dtunalikevirus
## 2023-03-15 20:08:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Tymovirales.f__Betaflexiviridae.g__Foveavirus
## 2023-03-15 20:08:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Virgaviridae.g__Pecluvirus
## 2023-03-15 20:08:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Skunalikevirus
## 2023-03-15 20:08:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Tymovirales.f__Tymoviridae.g__Marafivirus
## 2023-03-15 20:08:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Phikzlikevirus
## 2023-03-15 20:08:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Orthomyxoviridae.g__Influenzavirus_C
## 2023-03-15 20:08:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phi29likevirus
## 2023-03-15 20:08:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Tectiviridae.g__Tectivirus
## 2023-03-15 20:08:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Caulimoviridae.g__Cavemovirus
## 2023-03-15 20:08:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Anelloviridae.g__Betatorquevirus
## 2023-03-15 20:08:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Caulimoviridae.g__Caulimovirus
## 2023-03-15 20:08:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Pbunalikevirus
## 2023-03-15 20:08:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Reoviridae.g__Phytoreovirus
## 2023-03-15 20:08:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Bromoviridae.g__Alfamovirus
## 2023-03-15 20:08:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Sp6likevirus
## 2023-03-15 20:08:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Sphaerolipoviridae.g__Gammasphaerolipovirus
## 2023-03-15 20:09:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Flaviviridae.g__Pegivirus
## 2023-03-15 20:09:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Mononegavirales.f__Rhabdoviridae.g__Vesiculovirus
## 2023-03-15 20:09:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Mononegavirales.f__Rhabdoviridae.g__Lyssavirus
## 2023-03-15 20:09:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Hepadnaviridae.g__Orthohepadnavirus
## 2023-03-15 20:09:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Tymovirales.f__Alphaflexiviridae.g__Allexivirus
## 2023-03-15 20:09:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Parvoviridae.g__Ambidensovirus
## 2023-03-15 20:09:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Comovirus
## 2023-03-15 20:09:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.g__Polemovirus
## 2023-03-15 20:09:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Leviviridae.g__Levivirus
## 2023-03-15 20:09:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phieco32likevirus
## 2023-03-15 20:09:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Reoviridae.g__Aquareovirus
## 2023-03-15 20:09:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Bromoviridae.g__Ilarvirus
## 2023-03-15 20:09:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Phic3unalikevirus
## 2023-03-15 20:09:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Narnaviridae.g__Narnavirus
## 2023-03-15 20:09:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Totiviridae.g__Totivirus
## 2023-03-15 20:09:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Chilikevirus
## 2023-03-15 20:09:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Potyviridae.g__Tritimovirus
## 2023-03-15 20:09:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viroids.f__Pospiviroidae.g__Coleviroid
## 2023-03-15 20:09:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Papillomaviridae.g__Dyopipapillomavirus
## 2023-03-15 20:09:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Neosynechococcus
## 2023-03-15 20:09:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Dolichospermum
## 2023-03-15 20:09:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Altibacter
## 2023-03-15 20:09:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Methanomassiliicoccales.f__Methanomassiliicoccaceae.g__Candidatus_Methanomethylophilus
## 2023-03-15 20:09:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Nitritalea
## 2023-03-15 20:09:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Mangrovibacter
## 2023-03-15 20:09:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Pseudoramibacter
## 2023-03-15 20:09:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfospira
## 2023-03-15 20:09:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Arenitalea
## 2023-03-15 20:09:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Thermoactinomycetaceae.g__Shimazuella
## 2023-03-15 20:09:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Gaetbulibacter
## 2023-03-15 20:09:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Basilea
## 2023-03-15 20:09:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Alicyclobacillaceae.g__Effusibacillus
## 2023-03-15 20:09:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitinibacter
## 2023-03-15 20:09:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Myxosarcina
## 2023-03-15 20:09:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Gayadomonas
## 2023-03-15 20:09:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Jeotgalibacillus
## 2023-03-15 20:09:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halobellus
## 2023-03-15 20:09:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Archaeoglobi.o__Archaeoglobales.f__Archaeoglobaceae.g__Ferroglobus
## 2023-03-15 20:09:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Sediminibacillus
## 2023-03-15 20:09:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methanosarcinaceae.g__Methanohalobium
## 2023-03-15 20:09:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Robiginitalea
## 2023-03-15 20:09:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Caldimicrobium
## 2023-03-15 20:09:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Candidatus_Koribacter
## 2023-03-15 20:09:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Centipeda
## 2023-03-15 20:09:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Nocardiopsaceae.g__Allosalinactinospora
## 2023-03-15 20:09:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halogranum
## 2023-03-15 20:09:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Nautilia
## 2023-03-15 20:09:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Desulfurobacteriales.f__Desulfurobacteriaceae.g__Thermovibrio
## 2023-03-15 20:09:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Aliiroseovarius
## 2023-03-15 20:09:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Thaumarchaeota.o__Nitrosopumilales.f__Nitrosopumilaceae.g__Candidatus_Nitrosoarchaeum
## 2023-03-15 20:09:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Marinococcus
## 2023-03-15 20:09:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfobacula
## 2023-03-15 20:09:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanoculleus
## 2023-03-15 20:09:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Aquifex
## 2023-03-15 20:09:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Shuttleworthia
## 2023-03-15 20:09:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.o__Thermomicrobiales.f__Thermomicrobiaceae.g__Thermomicrobium
## 2023-03-15 20:09:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Thermocrinis
## 2023-03-15 20:09:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanofollis
## 2023-03-15 20:09:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Mesonia
## 2023-03-15 20:09:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Basfia
## 2023-03-15 20:09:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Candidatus_Atelocyanobacterium
## 2023-03-15 20:09:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Coriobacterium
## 2023-03-15 20:09:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Haloplanus
## 2023-03-15 20:09:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Flagellimonas
## 2023-03-15 20:09:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Thermoproteales.f__Thermoproteaceae.g__Vulcanisaeta
## 2023-03-15 20:09:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Spongiibacteraceae.g__Zhongshania
## 2023-03-15 20:09:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Rummeliibacillus
## 2023-03-15 20:09:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfurivibrio
## 2023-03-15 20:09:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Salinibacillus
## 2023-03-15 20:09:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Pseudobutyrivibrio
## 2023-03-15 20:09:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Kosmotogales.f__Kosmotogaceae.g__Mesotoga
## 2023-03-15 20:09:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Paracaedibacteraceae.g__Candidatus_Odyssella
## 2023-03-15 20:09:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Dielma
## 2023-03-15 20:09:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Terribacillus
## 2023-03-15 20:09:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Acidilobales.f__Acidilobaceae.g__Acidilobus
## 2023-03-15 20:09:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Lacimicrobium
## 2023-03-15 20:09:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Halostagnicola
## 2023-03-15 20:09:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Adlercreutzia
## 2023-03-15 20:09:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Candidatus_Photodesmus
## 2023-03-15 20:09:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Nereida
## 2023-03-15 20:09:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Cloacibacillus
## 2023-03-15 20:09:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Thaumarchaeota.g__Candidatus_Nitrosotenuis
## 2023-03-15 20:09:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Thermoproteales.f__Thermoproteaceae.g__Caldivirga
## 2023-03-15 20:09:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Deefgea
## 2023-03-15 20:09:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Subdoligranulum
## 2023-03-15 20:09:08 INFO::Creating boxplot for categorical data, Putative_combined vs contaminant1Harvard
## 2023-03-15 20:09:08 INFO::Creating boxplot for categorical data, Putative_combined vs contaminant2HarvardCanadaBaylorWashU
## 2023-03-15 20:09:08 INFO::Creating boxplot for categorical data, Putative_combined vs contaminant3AllSeqCenters
## 2023-03-15 20:09:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Bunyaviridae.g__Phlebovirus
## 2023-03-15 20:09:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Tymovirales.f__Betaflexiviridae.g__Trichovirus
## 2023-03-15 20:09:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanoregulaceae.g__Methanolinea
## 2023-03-15 20:09:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Allobaculum
## 2023-03-15 20:09:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Potyviridae.g__Bymovirus
## 2023-03-15 20:09:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__N4likevirus
## 2023-03-15 20:09:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Thaumarchaeota.o__Nitrosopumilales.f__Nitrosopumilaceae.g__Nitrosopumilus
## 2023-03-15 20:09:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__P100virus
## 2023-03-15 20:09:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Natronomonas
## 2023-03-15 20:09:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.g__Hoyosella
## 2023-03-15 20:09:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Sellimonas
## 2023-03-15 20:09:09 INFO::Creating boxplot for categorical data, Putative_combined vs contaminant4RandomSpikesHarvard
## 2023-03-15 20:09:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Aphthovirus
## 2023-03-15 20:09:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylovorus
## 2023-03-15 20:09:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halobacterium
## 2023-03-15 20:09:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Wolinella
## 2023-03-15 20:09:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phikmvlikevirus
## 2023-03-15 20:09:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Halolactibacillus
## 2023-03-15 20:09:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Thalassomonas
## 2023-03-15 20:09:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Gramella
## 2023-03-15 20:09:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Haloarcula
## 2023-03-15 20:09:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Pyrococcus
## 2023-03-15 20:09:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Aromatoleum
## 2023-03-15 20:09:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Halopiger
## 2023-03-15 20:09:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Inoviridae.g__Inovirus
## 2023-03-15 20:09:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natronorubrum
## 2023-03-15 20:09:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Prosthecochloris
## 2023-03-15 20:09:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Candidatus_Methylopumilus
## 2023-03-15 20:09:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Nisaea
## 2023-03-15 20:09:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halanaeroarchaeum
## 2023-03-15 20:09:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Coprobacter
## 2023-03-15 20:09:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Propionispira
## 2023-03-15 20:09:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Puniceibacterium
## 2023-03-15 20:09:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Thermoproteales.f__Thermofilaceae.g__Thermofilum
## 2023-03-15 20:09:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Thioalkalimicrobium
## 2023-03-15 20:09:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophaceae.g__Syntrophus
## 2023-03-15 20:09:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Legionellaceae.g__Tatlockia
## 2023-03-15 20:09:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Arhodomonas
## 2023-03-15 20:09:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prolixibacteraceae.g__Prolixibacter
## 2023-03-15 20:09:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Reinekea
## 2023-03-15 20:09:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Balneatrix
## 2023-03-15 20:09:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Thalassolituus
## 2023-03-15 20:09:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomarinum
## 2023-03-15 20:09:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Holdemania
## 2023-03-15 20:09:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Salinimonas
## 2023-03-15 20:09:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Catenovulum
## 2023-03-15 20:09:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.c__Spartobacteria.g__Candidatus_Xiphinematobacter
## 2023-03-15 20:09:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Azonexus
## 2023-03-15 20:09:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Amphritea
## 2023-03-15 20:09:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ponticoccus
## 2023-03-15 20:09:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Saccharospirillum
## 2023-03-15 20:09:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.o__Haloplasmatales.f__Haloplasmataceae.g__Haloplasma
## 2023-03-15 20:09:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Yokenella
## 2023-03-15 20:09:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Zymobacter
## 2023-03-15 20:09:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Sideroxydans
## 2023-03-15 20:09:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Bermanella
## 2023-03-15 20:09:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Spongiibacteraceae.g__Dasania
## 2023-03-15 20:09:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Thermincola
## 2023-03-15 20:09:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Dactylococcopsis
## 2023-03-15 20:09:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Xylanimonas
## 2023-03-15 20:09:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Actinopolymorpha
## 2023-03-15 20:09:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Tolumonas
## 2023-03-15 20:09:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Afifella
## 2023-03-15 20:09:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Maritalea
## 2023-03-15 20:09:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Lentzea
## 2023-03-15 20:09:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Obesumbacterium
## 2023-03-15 20:09:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanoplanus
## 2023-03-15 20:09:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfonatronospira
## 2023-03-15 20:09:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Mesoaciditogales.f__Mesoaciditogaceae.g__Mesoaciditoga
## 2023-03-15 20:09:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.g__Thermosulfidibacter
## 2023-03-15 20:09:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.g__Aciduliprofundum
## 2023-03-15 20:09:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Pyrodictiaceae.g__Pyrodictium
## 2023-03-15 20:09:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halogeometricum
## 2023-03-15 20:09:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Candidatus_Phaeomarinobacter
## 2023-03-15 20:09:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Thalassotalea
## 2023-03-15 20:09:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Cyclobacterium
## 2023-03-15 20:09:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Salimicrobium
## 2023-03-15 20:09:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Stigonematales.g__Mastigocladopsis
## 2023-03-15 20:09:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Ignavibacteriae.c__Ignavibacteria.o__Ignavibacteriales.f__Melioribacteraceae.g__Melioribacter
## 2023-03-15 20:09:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Thermotogaceae.g__Pseudothermotoga
## 2023-03-15 20:09:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Nocardiopsaceae.g__Streptomonospora
## 2023-03-15 20:09:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Pelodictyon
## 2023-03-15 20:09:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halarchaeum
## 2023-03-15 20:09:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Chloroflexia.o__Chloroflexales.f__Oscillochloridaceae.g__Oscillochloris
## 2023-03-15 20:09:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halalkalicoccus
## 2023-03-15 20:09:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatiglans
## 2023-03-15 20:09:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.f__Competibacteraceae.g__Candidatus_Competibacter
## 2023-03-15 20:09:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Citreicella
## 2023-03-15 20:09:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatirhabdium
## 2023-03-15 20:09:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Aliiglaciecola
## 2023-03-15 20:09:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Paeniglutamicibacter
## 2023-03-15 20:09:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Siccibacter
## 2023-03-15 20:09:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.g__Thermobaculum
## 2023-03-15 20:09:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseibacterium
## 2023-03-15 20:09:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Lymphocryptovirus
## 2023-03-15 20:09:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermabacteraceae.g__Helcobacillus
## 2023-03-15 20:09:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Lampropedia
## 2023-03-15 20:09:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Leeia
## 2023-03-15 20:09:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Renibacterium
## 2023-03-15 20:09:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Litoreibacter
## 2023-03-15 20:09:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylothermaceae.g__Methylohalobius
## 2023-03-15 20:09:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.g__Methyloceanibacter
## 2023-03-15 20:09:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Aliihoeflea
## 2023-03-15 20:09:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiocystis
## 2023-03-15 20:09:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Rudanella
## 2023-03-15 20:09:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Blastopirellula
## 2023-03-15 20:09:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Rubidibacter
## 2023-03-15 20:09:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Microvirgula
## 2023-03-15 20:09:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Deferribacter
## 2023-03-15 20:09:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Geovibrio
## 2023-03-15 20:09:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Polydnaviridae.g__Ichnovirus
## 2023-03-15 20:09:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Marinospirillum
## 2023-03-15 20:09:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Mimiviridae.g__Mimivirus
## 2023-03-15 20:09:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Sedimenticola
## 2023-03-15 20:09:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Youngiibacter
## 2023-03-15 20:09:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_IV._Incertae_Sedis.g__Mahella
## 2023-03-15 20:09:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Stanieria
## 2023-03-15 20:09:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Cryomorphaceae.g__Owenweeksia
## 2023-03-15 20:09:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Agarivorans
## 2023-03-15 20:09:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Herbiconiux
## 2023-03-15 20:09:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Mannheimia
## 2023-03-15 20:09:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Moranella
## 2023-03-15 20:09:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Gallionella
## 2023-03-15 20:09:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bartonellaceae.g__Bartonella
## 2023-03-15 20:09:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Herpesvirales.f__Malacoherpesviridae.g__Ostreavirus
## 2023-03-15 20:09:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Capnocytophaga
## 2023-03-15 20:09:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Leeuwenhoekiella
## 2023-03-15 20:09:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Marinimicrobium
## 2023-03-15 20:09:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.g__Bacilladnavirus
## 2023-03-15 20:09:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Gynuella
## 2023-03-15 20:09:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Sphingorhabdus
## 2023-03-15 20:09:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Holdemanella
## 2023-03-15 20:09:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Poxviridae.g__Alphaentomopoxvirus
## 2023-03-15 20:09:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Salinivibrio
## 2023-03-15 20:09:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Aerococcaceae.g__Eremococcus
## 2023-03-15 20:09:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanoregulaceae.g__Methanoregula
## 2023-03-15 20:09:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Cryobacterium
## 2023-03-15 20:09:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Flexilinea
## 2023-03-15 20:09:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Campylobacteraceae.g__Sulfurospirillum
## 2023-03-15 20:09:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Elusimicrobia.c__Elusimicrobia.o__Elusimicrobiales.f__Elusimicrobiaceae.g__Elusimicrobium
## 2023-03-15 20:09:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Pyramidobacter
## 2023-03-15 20:09:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Bromoviridae.g__Cucumovirus
## 2023-03-15 20:09:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Chelonobacter
## 2023-03-15 20:09:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Halotalea
## 2023-03-15 20:09:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sedimentitalea
## 2023-03-15 20:09:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Cyanobacterium
## 2023-03-15 20:09:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Phaeodactylibacter
## 2023-03-15 20:09:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Longilinea
## 2023-03-15 20:09:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.o__Bacteroidetes_Order_II._Incertae_sedis.f__Rhodothermaceae.g__Salinibacter
## 2023-03-15 20:09:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Thermopetrobacter
## 2023-03-15 20:09:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Bifidobacteriales.f__Bifidobacteriaceae.g__Parascardovia
## 2023-03-15 20:09:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Thermosynechococcus
## 2023-03-15 20:09:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Spirochaetaceae.g__Salinispira
## 2023-03-15 20:09:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Myxococcaceae.g__Corallococcus
## 2023-03-15 20:09:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methanosarcinaceae.g__Methanohalophilus
## 2023-03-15 20:09:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Bromoviridae.g__Oleavirus
## 2023-03-15 20:09:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Anaerophaga
## 2023-03-15 20:09:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Vibrio
## 2023-03-15 20:09:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Leadbetterella
## 2023-03-15 20:09:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Isosphaeraceae.g__Isosphaera
## 2023-03-15 20:09:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Bdellovibrionales.f__Halobacteriovoraceae.g__Halobacteriovorax
## 2023-03-15 20:09:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Wolbachia
## 2023-03-15 20:09:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Luteibacter
## 2023-03-15 20:09:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Cryocola
## 2023-03-15 20:09:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Eggerthia
## 2023-03-15 20:09:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Terrabacter
## 2023-03-15 20:09:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Derxia
## 2023-03-15 20:09:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Kerstersia
## 2023-03-15 20:09:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Actinotignum
## 2023-03-15 20:09:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Amphibacillus
## 2023-03-15 20:09:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.g__Nitratiruptor
## 2023-03-15 20:09:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Chloroherpeton
## 2023-03-15 20:09:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Joostella
## 2023-03-15 20:09:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Thaumarchaeota.g__Candidatus_Nitrosopelagicus
## 2023-03-15 20:09:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Thaumarchaeota.c__Nitrososphaeria.o__Nitrososphaerales.f__Nitrososphaeraceae.g__Nitrososphaera
## 2023-03-15 20:09:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.o__Bacteroidetes_Order_II._Incertae_sedis.f__Rhodothermaceae.g__Salisaeta
## 2023-03-15 20:09:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Riesia
## 2023-03-15 20:09:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Aestuariivita
## 2023-03-15 20:09:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Thermomonosporaceae.g__Thermomonospora
## 2023-03-15 20:09:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Parvularculales.f__Parvularculaceae.g__Parvularcula
## 2023-03-15 20:09:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Hepeviridae.g__Piscihepevirus
## 2023-03-15 20:09:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Fermentimonas
## 2023-03-15 20:09:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Crocinitomicaceae.g__Crocinitomix
## 2023-03-15 20:09:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Candidatus_Ruthia
## 2023-03-15 20:09:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Enterovirus
## 2023-03-15 20:09:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Hafnia
## 2023-03-15 20:09:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Hellea
## 2023-03-15 20:09:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudorhodobacter
## 2023-03-15 20:09:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Acaricomes
## 2023-03-15 20:09:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Aeromonas
## 2023-03-15 20:09:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Rhodovibrio
## 2023-03-15 20:09:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Ignatzschineria
## 2023-03-15 20:09:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Aurantimonadaceae.g__Fulvimarina
## 2023-03-15 20:09:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Salipiger
## 2023-03-15 20:09:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Oxalobacteraceae.g__Pseudoduganella
## 2023-03-15 20:09:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Kandleria
## 2023-03-15 20:09:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Thermoactinomycetaceae.g__Thermoactinomyces
## 2023-03-15 20:09:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylococcus
## 2023-03-15 20:09:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Hydrogenobacter
## 2023-03-15 20:09:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Rhodothermaeota.c__Balneolia.o__Balneolales.f__Balneolaceae.g__Balneola
## 2023-03-15 20:09:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Opitutales.f__Opitutaceae.g__Cephaloticoccus
## 2023-03-15 20:09:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Thioploca
## 2023-03-15 20:09:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Gluconacetobacter
## 2023-03-15 20:09:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Colwellia
## 2023-03-15 20:09:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermodesulfobiaceae.g__Thermodesulfobium
## 2023-03-15 20:09:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Thermanaerothrix
## 2023-03-15 20:09:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Legionellaceae.g__Fluoribacter
## 2023-03-15 20:09:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Pseudaminobacter
## 2023-03-15 20:09:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Paramesorhizobium
## 2023-03-15 20:09:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Ammonifex
## 2023-03-15 20:09:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Caulobacterales.f__Caulobacteraceae.g__Woodsholea
## 2023-03-15 20:09:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Shimwellia
## 2023-03-15 20:09:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Franconibacter
## 2023-03-15 20:09:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Acidocella
## 2023-03-15 20:09:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Flexistipes
## 2023-03-15 20:09:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ketogulonicigenium
## 2023-03-15 20:09:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Silanimonas
## 2023-03-15 20:09:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Fibrobacteres.c__Chitinispirillia.o__Chitinispirillales.f__Chitinispirillaceae.g__Chitinispirillum
## 2023-03-15 20:09:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Granulibacter
## 2023-03-15 20:09:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thalassobius
## 2023-03-15 20:09:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_III._Incertae_Sedis.g__Caldicellulosiruptor
## 2023-03-15 20:09:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Marinilabilia
## 2023-03-15 20:09:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Mimiviridae.g__Cafeteriavirus
## 2023-03-15 20:09:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Mitsuaria
## 2023-03-15 20:09:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Pleurocapsa
## 2023-03-15 20:09:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Desulfuromonadaceae.g__Desulfuromonas
## 2023-03-15 20:09:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Allochromatium
## 2023-03-15 20:09:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Yaniella
## 2023-03-15 20:09:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Bunyaviridae.g__Orthobunyavirus
## 2023-03-15 20:09:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Ignavibacteriae.c__Ignavibacteria.o__Ignavibacteriales.f__Ignavibacteriaceae.g__Ignavibacterium
## 2023-03-15 20:09:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Jejuia
## 2023-03-15 20:09:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Chroococcidiopsis
## 2023-03-15 20:09:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Oceaniovalibus
## 2023-03-15 20:09:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Gemmata
## 2023-03-15 20:09:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Yersinia
## 2023-03-15 20:09:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Proteiniclasticum
## 2023-03-15 20:09:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Paraoerskovia
## 2023-03-15 20:09:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Wohlfahrtiimonas
## 2023-03-15 20:09:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Sediminibacter
## 2023-03-15 20:09:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Riemerella
## 2023-03-15 20:09:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Starkeya
## 2023-03-15 20:09:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Thermococcus
## 2023-03-15 20:09:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Celeribacter
## 2023-03-15 20:09:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Mariniradius
## 2023-03-15 20:09:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Spiribacter
## 2023-03-15 20:09:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halanaerobiaceae.g__Halothermothrix
## 2023-03-15 20:09:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Clostridium
## 2023-03-15 20:09:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfonatronovibrio
## 2023-03-15 20:09:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Caliciviridae.g__Vesivirus
## 2023-03-15 20:09:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylobacteriaceae.g__Microvirga
## 2023-03-15 20:09:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfocapsa
## 2023-03-15 20:09:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Sanguibacteroides
## 2023-03-15 20:09:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Frateuria
## 2023-03-15 20:09:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.g__Nitratifractor
## 2023-03-15 20:09:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.c__Spartobacteria.g__Terrimicrobium
## 2023-03-15 20:09:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Richelia
## 2023-03-15 20:09:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Siansivirga
## 2023-03-15 20:09:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Kurthia
## 2023-03-15 20:09:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Sporomusaceae.g__Pelosinus
## 2023-03-15 20:09:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Leptolinea
## 2023-03-15 20:09:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Proteus
## 2023-03-15 20:09:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zunongwangia
## 2023-03-15 20:09:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.g__Kallipyga
## 2023-03-15 20:09:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Dehalococcoidia.g__Dehalogenimonas
## 2023-03-15 20:09:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Aquamavirus
## 2023-03-15 20:09:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Akkermansiaceae.g__Akkermansia
## 2023-03-15 20:09:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Archaeoglobi.o__Archaeoglobales.f__Archaeoglobaceae.g__Geoglobus
## 2023-03-15 20:09:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Tunalikevirus
## 2023-03-15 20:09:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Kribbella
## 2023-03-15 20:09:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pragia
## 2023-03-15 20:09:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Aeribacillus
## 2023-03-15 20:09:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Candidatus_Neoehrlichia
## 2023-03-15 20:09:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Dethiosulfovibrio
## 2023-03-15 20:09:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Arenaviridae.g__Arenavirus
## 2023-03-15 20:09:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Spongiibacteraceae.g__Spongiibacter
## 2023-03-15 20:09:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natrinema
## 2023-03-15 20:09:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Palaeococcus
## 2023-03-15 20:09:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Lunatimonas
## 2023-03-15 20:09:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Oscillospiraceae.g__Oscillibacter
## 2023-03-15 20:09:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylobacillus
## 2023-03-15 20:09:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylovulum
## 2023-03-15 20:09:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Thiolapillus
## 2023-03-15 20:09:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudooceanicola
## 2023-03-15 20:09:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oleiphilaceae.g__Oleiphilus
## 2023-03-15 20:09:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Lentibacillus
## 2023-03-15 20:09:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sediminimonas
## 2023-03-15 20:09:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Tistrella
## 2023-03-15 20:09:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Arcticibacter
## 2023-03-15 20:09:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Wenxinia
## 2023-03-15 20:09:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Chelativorans
## 2023-03-15 20:09:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Hydrogenophilales.f__Hydrogenophilaceae.g__Thiobacillus
## 2023-03-15 20:09:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Levilinea
## 2023-03-15 20:09:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Simiduia
## 2023-03-15 20:09:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Octadecabacter
## 2023-03-15 20:09:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Rhodospirillum
## 2023-03-15 20:09:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bradyrhizobiaceae.g__Tardiphaga
## 2023-03-15 20:09:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Bdellovibrionales.f__Bacteriovoracaceae.g__Bacteriovorax
## 2023-03-15 20:09:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Terasakiella
## 2023-03-15 20:09:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Yonghaparkia
## 2023-03-15 20:09:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prevotellaceae.g__Hallella
## 2023-03-15 20:09:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Carnobacteriaceae.g__Alloiococcus
## 2023-03-15 20:09:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Acidobacterium
## 2023-03-15 20:09:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.f__Leptospiraceae.g__Leptonema
## 2023-03-15 20:09:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudodonghicola
## 2023-03-15 20:09:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Gallaecimonas
## 2023-03-15 20:09:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Hymenobacter
## 2023-03-15 20:09:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Acidilobales.f__Caldisphaeraceae.g__Caldisphaera
## 2023-03-15 20:09:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Longispora
## 2023-03-15 20:09:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Hydrogenibacillus
## 2023-03-15 20:09:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Austwickia
## 2023-03-15 20:09:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Nitrincola
## 2023-03-15 20:09:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Coprococcus
## 2023-03-15 20:09:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Crenobacter
## 2023-03-15 20:09:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Denitrobacterium
## 2023-03-15 20:09:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Castellaniella
## 2023-03-15 20:09:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Asanoa
## 2023-03-15 20:09:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Haemophilus
## 2023-03-15 20:09:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Aquamicrobium
## 2023-03-15 20:09:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitiniphilus
## 2023-03-15 20:09:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Rhodoluna
## 2023-03-15 20:09:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanobacteriaceae.g__Methanosphaera
## 2023-03-15 20:09:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Enterorhabdus
## 2023-03-15 20:09:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Kordiimonadales.f__Kordiimonadaceae.g__Kordiimonas
## 2023-03-15 20:09:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Desulfurispora
## 2023-03-15 20:09:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prevotellaceae.g__Prevotella
## 2023-03-15 20:09:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Simkaniaceae.g__Simkania
## 2023-03-15 20:09:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfohalobium
## 2023-03-15 20:09:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Virgibacillus
## 2023-03-15 20:09:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Vitreoscilla
## 2023-03-15 20:09:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Flavisolibacter
## 2023-03-15 20:09:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Asaia
## 2023-03-15 20:09:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Candidatus_Accumulibacter
## 2023-03-15 20:09:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Mucispirillum
## 2023-03-15 20:09:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Geobacteraceae.g__Geopsychrobacter
## 2023-03-15 20:09:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Stappia
## 2023-03-15 20:09:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Fabavirus
## 2023-03-15 20:09:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bradyrhizobiaceae.g__Oligotropha
## 2023-03-15 20:09:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Xylella
## 2023-03-15 20:09:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Marvinbryantia
## 2023-03-15 20:09:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Sandarakinorhabdus
## 2023-03-15 20:09:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Ideonella
## 2023-03-15 20:09:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Christensenellaceae.g__Christensenella
## 2023-03-15 20:09:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinopolysporales.f__Actinopolysporaceae.g__Actinopolyspora
## 2023-03-15 20:09:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Rouxiella
## 2023-03-15 20:09:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Isosphaeraceae.g__Singulisphaera
## 2023-03-15 20:09:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Eudoraea
## 2023-03-15 20:09:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Parvibaculum
## 2023-03-15 20:09:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Ishikawaella
## 2023-03-15 20:09:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Kushneria
## 2023-03-15 20:09:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Halonatronum
## 2023-03-15 20:09:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Dinoroseobacter
## 2023-03-15 20:09:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Cucumibacter
## 2023-03-15 20:09:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Ewingella
## 2023-03-15 20:09:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Synergistes
## 2023-03-15 20:09:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Amoebophilaceae.g__Candidatus_Amoebophilus
## 2023-03-15 20:09:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Candidatus_Stoquefichus
## 2023-03-15 20:09:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Rubritepida
## 2023-03-15 20:09:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.g__Sobemovirus
## 2023-03-15 20:09:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Kineosporiales.f__Kineosporiaceae.g__Kineosporia
## 2023-03-15 20:09:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Rahnella
## 2023-03-15 20:09:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Leuconostocaceae.g__Leuconostoc
## 2023-03-15 20:09:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Microterricola
## 2023-03-15 20:09:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Fibrobacteres.c__Fibrobacteria.o__Fibrobacterales.f__Fibrobacteraceae.g__Fibrobacter
## 2023-03-15 20:09:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Chitinimonas
## 2023-03-15 20:09:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Galbibacter
## 2023-03-15 20:09:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfarculales.f__Desulfarculaceae.g__Desulfarculus
## 2023-03-15 20:09:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Pelistega
## 2023-03-15 20:09:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Verrucosispora
## 2023-03-15 20:09:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Halobacteroides
## 2023-03-15 20:09:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Anaerostipes
## 2023-03-15 20:09:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_III._Incertae_Sedis.g__Thermosediminibacter
## 2023-03-15 20:09:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Fusobacteriaceae.g__Ilyobacter
## 2023-03-15 20:09:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.g__Lawsonella
## 2023-03-15 20:09:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.g__Phocaeicola
## 2023-03-15 20:09:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Maritimibacter
## 2023-03-15 20:09:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Gallibacterium
## 2023-03-15 20:09:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Spirochaetaceae.g__Treponema
## 2023-03-15 20:09:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Nitrosococcus
## 2023-03-15 20:09:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cardiobacteriales.f__Cardiobacteriaceae.g__Cardiobacterium
## 2023-03-15 20:09:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Andreprevotia
## 2023-03-15 20:09:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Ponticaulis
## 2023-03-15 20:09:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Alphacoronavirus
## 2023-03-15 20:09:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Leucothrix
## 2023-03-15 20:09:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Thermoplasmatales.f__Picrophilaceae.g__Picrophilus
## 2023-03-15 20:09:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Nostoc
## 2023-03-15 20:09:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Steroidobacter
## 2023-03-15 20:09:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Gemmobacter
## 2023-03-15 20:09:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Bacteroidaceae.g__Bacteroides
## 2023-03-15 20:09:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Oxalobacteraceae.g__Oxalobacter
## 2023-03-15 20:09:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Fulvivirga
## 2023-03-15 20:09:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Aestuariibacter
## 2023-03-15 20:09:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Simplexvirus
## 2023-03-15 20:09:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Beggiatoa
## 2023-03-15 20:09:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Carboxydothermus
## 2023-03-15 20:09:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Mycobacteriaceae.g__Mycobacterium
## 2023-03-15 20:09:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobiaceae.g__Haloferula
## 2023-03-15 20:09:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Thermoproteales.f__Thermoproteaceae.g__Thermoproteus
## 2023-03-15 20:09:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Thermodesulfatator
## 2023-03-15 20:09:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.g__Thermorudis
## 2023-03-15 20:09:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Oceanospirillum
## 2023-03-15 20:09:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.g__Higrevirus
## 2023-03-15 20:09:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Oceanicaulis
## 2023-03-15 20:09:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Dongia
## 2023-03-15 20:09:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Thermales.f__Thermaceae.g__Oceanithermus
## 2023-03-15 20:09:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Hahellaceae.g__Hahella
## 2023-03-15 20:09:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Melissococcus
## 2023-03-15 20:09:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Peptostreptococcus
## 2023-03-15 20:09:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Blastomonas
## 2023-03-15 20:09:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Campylobacteraceae.g__Campylobacter
## 2023-03-15 20:09:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Granulicella
## 2023-03-15 20:09:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Tremovirus
## 2023-03-15 20:09:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Anaerovibrio
## 2023-03-15 20:09:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sagittula
## 2023-03-15 20:09:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Poxviridae.g__Leporipoxvirus
## 2023-03-15 20:09:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Isoptericola
## 2023-03-15 20:09:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Crocinitomicaceae.g__Fluviicola
## 2023-03-15 20:09:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfarculales.f__Desulfarculaceae.g__Dethiosulfatarculus
## 2023-03-15 20:09:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Hydrogenovibrio
## 2023-03-15 20:09:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermabacteraceae.g__Dermabacter
## 2023-03-15 20:09:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Salinimicrobium
## 2023-03-15 20:09:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thalassobacter
## 2023-03-15 20:09:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Paenirhodobacter
## 2023-03-15 20:09:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Circoviridae.g__Circovirus
## 2023-03-15 20:09:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Zymomonas
## 2023-03-15 20:09:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Croceitalea
## 2023-03-15 20:09:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.g__Candidatus_Hepatobacter
## 2023-03-15 20:09:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Ornithobacterium
## 2023-03-15 20:09:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Anaerobacillus
## 2023-03-15 20:09:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Marseilleviridae.g__Marseillevirus
## 2023-03-15 20:09:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Marinobacterium
## 2023-03-15 20:09:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Sediminicola
## 2023-03-15 20:09:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Plantibacter
## 2023-03-15 20:09:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Salegentibacter
## 2023-03-15 20:09:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chrysiogenetes.c__Chrysiogenetes.o__Chrysiogenales.f__Chrysiogenaceae.g__Desulfurispirillum
## 2023-03-15 20:09:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.g__Timonella
## 2023-03-15 20:09:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Aliagarivorans
## 2023-03-15 20:09:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Terracoccus
## 2023-03-15 20:09:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Niabella
## 2023-03-15 20:09:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Diaphorobacter
## 2023-03-15 20:09:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Kluyvera
## 2023-03-15 20:09:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Oribacterium
## 2023-03-15 20:09:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Waddliaceae.g__Waddlia
## 2023-03-15 20:09:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Betacoronavirus
## 2023-03-15 20:09:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Saccharibacter
## 2023-03-15 20:09:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Acidobacteria.c__Solibacteres.o__Solibacterales.g__Bryobacter
## 2023-03-15 20:09:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ruegeria
## 2023-03-15 20:09:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Oerskovia
## 2023-03-15 20:09:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Nonlabens
## 2023-03-15 20:09:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ahrensia
## 2023-03-15 20:09:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Listeriaceae.g__Listeria
## 2023-03-15 20:09:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Kamptonema
## 2023-03-15 20:09:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Faecalibaculum
## 2023-03-15 20:09:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Halothiobacillaceae.g__Halothiobacillus
## 2023-03-15 20:09:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Aminomonas
## 2023-03-15 20:09:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Thermales.f__Thermaceae.g__Marinithermus
## 2023-03-15 20:09:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Phaeospirillum
## 2023-03-15 20:09:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Glycomycetales.f__Glycomycetaceae.g__Haloglycomyces
## 2023-03-15 20:09:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zhouia
## 2023-03-15 20:09:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Maricaulis
## 2023-03-15 20:09:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Spounalikevirus
## 2023-03-15 20:09:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Lactobacillaceae.g__Sharpea
## 2023-03-15 20:09:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Thalassobaculum
## 2023-03-15 20:09:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Micavibrio
## 2023-03-15 20:09:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Anaerofustis
## 2023-03-15 20:09:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Senegalimassilia
## 2023-03-15 20:09:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Agreia
## 2023-03-15 20:09:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Saccharomonospora
## 2023-03-15 20:09:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Escherichia
## 2023-03-15 20:09:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Thermanaerovibrio
## 2023-03-15 20:09:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Thermomonosporaceae.g__Spirillospora
## 2023-03-15 20:09:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Chania
## 2023-03-15 20:09:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Pseudohongiella
## 2023-03-15 20:09:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Chlamydiaceae.g__Chlamydia
## 2023-03-15 20:09:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Falsirhodobacter
## 2023-03-15 20:09:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Shimia
## 2023-03-15 20:09:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Croceibacter
## 2023-03-15 20:09:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Leuconostocaceae.g__Weissella
## 2023-03-15 20:09:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Iridoviridae.g__Ranavirus
## 2023-03-15 20:09:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Dokdonella
## 2023-03-15 20:09:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Pandoraea
## 2023-03-15 20:09:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfovibrionaceae.g__Lawsonia
## 2023-03-15 20:09:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Taylorella
## 2023-03-15 20:09:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Ectothiorhodospira
## 2023-03-15 20:09:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Aminobacterium
## 2023-03-15 20:09:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatitalea
## 2023-03-15 20:09:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Pseudolabrys
## 2023-03-15 20:09:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Methyloferula
## 2023-03-15 20:09:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Viridibacillus
## 2023-03-15 20:09:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Microthrixaceae.g__Candidatus_Microthrix
## 2023-03-15 20:09:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Odoribacteraceae.g__Odoribacter
## 2023-03-15 20:09:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomonas
## 2023-03-15 20:09:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Microscilla
## 2023-03-15 20:09:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Comamonas
## 2023-03-15 20:09:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Candidatus_Desulforudis
## 2023-03-15 20:09:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Ornatilinea
## 2023-03-15 20:09:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Limnochordia.o__Limnochordales.f__Limnochordaceae.g__Limnochorda
## 2023-03-15 20:09:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Agrococcus
## 2023-03-15 20:09:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Hahellaceae.g__Zooshikella
## 2023-03-15 20:09:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Novispirillum
## 2023-03-15 20:09:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Oceanibaculum
## 2023-03-15 20:09:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Raoultella
## 2023-03-15 20:09:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Rubinisphaera
## 2023-03-15 20:09:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Veillonellales.f__Veillonellaceae.g__Veillonella
## 2023-03-15 20:09:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfonatronaceae.g__Desulfonatronum
## 2023-03-15 20:09:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Oleiagrimonas
## 2023-03-15 20:09:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Catelliglobosispora
## 2023-03-15 20:09:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Weeksella
## 2023-03-15 20:09:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Halieaceae.g__Luminiphilus
## 2023-03-15 20:09:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Polyangiaceae.g__Chondromyces
## 2023-03-15 20:09:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Coprobacillus
## 2023-03-15 20:09:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Mycoplasmatales.f__Mycoplasmataceae.g__Mycoplasma
## 2023-03-15 20:09:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Histophilus
## 2023-03-15 20:09:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Sediminibacterium
## 2023-03-15 20:09:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Kibdelosporangium
## 2023-03-15 20:09:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Fictibacillus
## 2023-03-15 20:09:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Planktomarina
## 2023-03-15 20:09:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Stigonematales.g__Hapalosiphon
## 2023-03-15 20:09:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Ferrimicrobium
## 2023-03-15 20:09:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Kozakia
## 2023-03-15 20:09:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Flavonifractor
## 2023-03-15 20:09:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Acidobacteria.c__Solibacteres.o__Solibacterales.f__Solibacteraceae.g__Candidatus_Solibacter
## 2023-03-15 20:09:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Lentisphaerae.c__Lentisphaeria.o__Lentisphaerales.f__Lentisphaeraceae.g__Lentisphaera
## 2023-03-15 20:09:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Aurantimonadaceae.g__Martelella
## 2023-03-15 20:09:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Puniceicoccales.f__Puniceicoccaceae.g__Coraliomargarita
## 2023-03-15 20:09:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Dicistroviridae.g__Cripavirus
## 2023-03-15 20:09:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Gordoniaceae.g__Gordonia
## 2023-03-15 20:09:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Candidatus_Cloacimonetes.g__Candidatus_Cloacimonas
## 2023-03-15 20:09:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Adenoviridae.g__Mastadenovirus
## 2023-03-15 20:09:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Propionibacteriaceae.g__Propionimicrobium
## 2023-03-15 20:09:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Salinarchaeum
## 2023-03-15 20:09:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Carnobacteriaceae.g__Allofustis
## 2023-03-15 20:09:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Rudaea
## 2023-03-15 20:09:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Actinocatenispora
## 2023-03-15 20:09:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Alcaligenes
## 2023-03-15 20:09:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Dermatophilus
## 2023-03-15 20:09:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Leptothrix
## 2023-03-15 20:09:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Cesiribacter
## 2023-03-15 20:09:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Arcanobacterium
## 2023-03-15 20:09:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Mycoplasmatales.f__Mycoplasmataceae.g__Ureaplasma
## 2023-03-15 20:09:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Magnetococcales.f__Magnetococcaceae.g__Magnetococcus
## 2023-03-15 20:09:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Saccharibacillus
## 2023-03-15 20:09:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Allokutzneria
## 2023-03-15 20:09:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Filomicrobium
## 2023-03-15 20:09:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Flaviflexus
## 2023-03-15 20:09:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Eubacterium
## 2023-03-15 20:10:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Kineosporiales.f__Kineosporiaceae.g__Kineococcus
## 2023-03-15 20:10:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Flavihumibacter
## 2023-03-15 20:10:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Rubritaleaceae.g__Rubritalea
## 2023-03-15 20:10:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Olleya
## 2023-03-15 20:10:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Silvibacterium
## 2023-03-15 20:10:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Sporolactobacillaceae.g__Tuberibacillus
## 2023-03-15 20:10:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Midichloriaceae.g__Candidatus_Midichloria
## 2023-03-15 20:10:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Nafulsella
## 2023-03-15 20:10:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Finegoldia
## 2023-03-15 20:10:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Astroviridae.g__Mamastrovirus
## 2023-03-15 20:10:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Adhaeribacter
## 2023-03-15 20:10:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Flaviviridae.g__Flavivirus
## 2023-03-15 20:10:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Methylibium
## 2023-03-15 20:10:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Thermoanaerobacter
## 2023-03-15 20:10:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Glycomycetales.f__Glycomycetaceae.g__Glycomyces
## 2023-03-15 20:10:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Thermonemataceae.g__Thermonema
## 2023-03-15 20:10:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Halorhodospira
## 2023-03-15 20:10:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfobulbus
## 2023-03-15 20:10:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Kineosporiales.f__Kineosporiaceae.g__Angustibacter
## 2023-03-15 20:10:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.g__Caedibacter
## 2023-03-15 20:10:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Desulfurococcaceae.g__Ignicoccus
## 2023-03-15 20:10:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitinilyticum
## 2023-03-15 20:10:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Thermomonas
## 2023-03-15 20:10:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylobacteriaceae.g__Meganema
## 2023-03-15 20:10:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Gulosibacter
## 2023-03-15 20:10:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Dictyoglomi.c__Dictyoglomia.o__Dictyoglomales.f__Dictyoglomaceae.g__Dictyoglomus
## 2023-03-15 20:10:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Tanticharoenia
## 2023-03-15 20:10:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Holosporaceae.g__Holospora
## 2023-03-15 20:10:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Magnetospira
## 2023-03-15 20:10:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Sciscionella
## 2023-03-15 20:10:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophaceae.g__Desulfomonile
## 2023-03-15 20:10:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Orthomyxoviridae.g__Isavirus
## 2023-03-15 20:10:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Enteractinococcus
## 2023-03-15 20:10:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Leptotrichiaceae.g__Sebaldella
## 2023-03-15 20:10:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Pelagibacterium
## 2023-03-15 20:10:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Polyangiaceae.g__Sorangium
## 2023-03-15 20:10:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Confluentimicrobium
## 2023-03-15 20:10:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Mageeibacillus
## 2023-03-15 20:10:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Neptunomonas
## 2023-03-15 20:10:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Anaplasma
## 2023-03-15 20:10:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Virgaviridae.g__Pomovirus
## 2023-03-15 20:10:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Myroides
## 2023-03-15 20:10:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Arsukibacterium
## 2023-03-15 20:10:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Pseudoglutamicibacter
## 2023-03-15 20:10:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseivivax
## 2023-03-15 20:10:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Eggerthella
## 2023-03-15 20:10:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Mitsuokella
## 2023-03-15 20:10:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Haematospirillum
## 2023-03-15 20:10:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Cyanobium
## 2023-03-15 20:10:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Maribius
## 2023-03-15 20:10:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Thiorhodospira
## 2023-03-15 20:10:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Hamadaea
## 2023-03-15 20:10:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Prauserella
## 2023-03-15 20:10:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Polynucleobacter
## 2023-03-15 20:10:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Lactobacillaceae.g__Lactobacillus
## 2023-03-15 20:10:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Emticicia
## 2023-03-15 20:10:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Paracaedibacteraceae.g__Candidatus_Paracaedibacter
## 2023-03-15 20:10:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Rhodobacter
## 2023-03-15 20:10:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Ferriphaselus
## 2023-03-15 20:10:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prolixibacteraceae.g__Sunxiuqinia
## 2023-03-15 20:10:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Propionibacteriaceae.g__Granulicoccus
## 2023-03-15 20:10:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Spirosoma
## 2023-03-15 20:10:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Caldicoprobacteraceae.g__Caldicoprobacter
## 2023-03-15 20:10:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Alkaliflexus
## 2023-03-15 20:10:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halorhabdus
## 2023-03-15 20:10:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Papillomaviridae.g__Lambdapapillomavirus
## 2023-03-15 20:10:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Neorickettsia
## 2023-03-15 20:10:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Orenia
## 2023-03-15 20:10:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Pasteurella
## 2023-03-15 20:10:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Methylocella
## 2023-03-15 20:10:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Retroviridae.g__Betaretrovirus
## 2023-03-15 20:10:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfovibrionaceae.g__Bilophila
## 2023-03-15 20:10:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Hirschia
## 2023-03-15 20:10:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Catenulisporales.f__Actinospicaceae.g__Actinospica
## 2023-03-15 20:10:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Roseivirga
## 2023-03-15 20:10:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Catenuloplanes
## 2023-03-15 20:10:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Gordonibacter
## 2023-03-15 20:10:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Neisseria
## 2023-03-15 20:10:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Tenacibaculum
## 2023-03-15 20:10:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Echinicola
## 2023-03-15 20:10:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Providencia
## 2023-03-15 20:10:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Enorma
## 2023-03-15 20:10:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Citromicrobium
## 2023-03-15 20:10:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Salivirus
## 2023-03-15 20:10:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Desulfurobacteriales.f__Desulfurobacteriaceae.g__Desulfurobacterium
## 2023-03-15 20:10:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Anaerolinea
## 2023-03-15 20:10:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Mobilicoccus
## 2023-03-15 20:10:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Segetibacter
## 2023-03-15 20:10:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylotenera
## 2023-03-15 20:10:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Rikenellaceae.g__Mucinivorans
## 2023-03-15 20:10:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Sporomusaceae.g__Anaeromusa
## 2023-03-15 20:10:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methermicoccaceae.g__Methermicoccus
## 2023-03-15 20:10:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Phycodnaviridae.g__Prymnesiovirus
## 2023-03-15 20:10:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Roseburia
## 2023-03-15 20:10:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhizobiaceae.g__Neorhizobium
## 2023-03-15 20:10:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Lewinella
## 2023-03-15 20:10:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulforegula
## 2023-03-15 20:10:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfosarcina
## 2023-03-15 20:10:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Henriciella
## 2023-03-15 20:10:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halapricum
## 2023-03-15 20:10:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Gimesia
## 2023-03-15 20:10:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.g__Tropheryma
## 2023-03-15 20:10:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Cecembia
## 2023-03-15 20:10:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Sutterellaceae.g__Sutterella
## 2023-03-15 20:10:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Criblamydiaceae.g__Criblamydia
## 2023-03-15 20:10:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Haloterrigena
## 2023-03-15 20:10:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Faecalibacterium
## 2023-03-15 20:10:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cardiobacteriales.f__Cardiobacteriaceae.g__Dichelobacter
## 2023-03-15 20:10:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Cystobacteraceae.g__Stigmatella
## 2023-03-15 20:10:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Polycyclovorans
## 2023-03-15 20:10:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Parvimonas
## 2023-03-15 20:10:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Fusobacteriaceae.g__Psychrilyobacter
## 2023-03-15 20:10:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.o__Methylacidiphilales.f__Methylacidiphilaceae.g__Methylacidiphilum
## 2023-03-15 20:10:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Brachyspirales.f__Brachyspiraceae.g__Brachyspira
## 2023-03-15 20:10:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Erythrobacteraceae.g__Altererythrobacter
## 2023-03-15 20:10:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Nakamurellales.f__Nakamurellaceae.g__Nakamurella
## 2023-03-15 20:10:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Actinobaculum
## 2023-03-15 20:10:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Muricauda
## 2023-03-15 20:10:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Desulfuromonadaceae.g__Pelobacter
## 2023-03-15 20:10:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Vitellibacter
## 2023-03-15 20:10:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Paludibacterium
## 2023-03-15 20:10:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Acetohalobium
## 2023-03-15 20:10:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Francisellaceae.g__Francisella
## 2023-03-15 20:10:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Candidatus_Puniceispirillum
## 2023-03-15 20:10:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Streptococcaceae.g__Streptococcus
## 2023-03-15 20:10:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Kinetoplastibacterium
## 2023-03-15 20:10:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Johnsonella
## 2023-03-15 20:10:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Parabacteroides
## 2023-03-15 20:10:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pantoea
## 2023-03-15 20:10:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Epulopiscium
## 2023-03-15 20:10:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Ramlibacter
## 2023-03-15 20:10:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Orbales.f__Orbaceae.g__Frischella
## 2023-03-15 20:10:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Defluviimonas
## 2023-03-15 20:10:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Arenibacter
## 2023-03-15 20:10:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Flaviviridae.g__Pestivirus
## 2023-03-15 20:10:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Arsenicicoccus
## 2023-03-15 20:10:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thioclava
## 2023-03-15 20:10:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Pilimelia
## 2023-03-15 20:10:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Candidatus_Korarchaeota.g__Candidatus_Korarchaeum
## 2023-03-15 20:10:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Solibacillus
## 2023-03-15 20:10:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Thermocrispum
## 2023-03-15 20:10:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Frankiales.f__Sporichthyaceae.g__Sporichthya
## 2023-03-15 20:10:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Acetobacter
## 2023-03-15 20:10:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sneathiellales.f__Sneathiellaceae.g__Sneathiella
## 2023-03-15 20:10:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylosarcina
## 2023-03-15 20:10:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Sicinivirus
## 2023-03-15 20:10:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Azohydromonas
## 2023-03-15 20:10:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Fervidobacteriaceae.g__Thermosipho
## 2023-03-15 20:10:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Microbacterium
## 2023-03-15 20:10:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Pseudomonadaceae.g__Oblitimonas
## 2023-03-15 20:10:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Veillonellales.f__Veillonellaceae.g__Megasphaera
## 2023-03-15 20:10:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Herpesvirales.f__Alloherpesviridae.g__Batrachovirus
## 2023-03-15 20:10:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Enterococcus
## 2023-03-15 20:10:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Slackia
## 2023-03-15 20:10:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thioflavicoccus
## 2023-03-15 20:10:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Marivirga
## 2023-03-15 20:10:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.o__Sphaerobacterales.f__Sphaerobacteraceae.g__Sphaerobacter
## 2023-03-15 20:10:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Kiloniellales.f__Kiloniellaceae.g__Kiloniella
## 2023-03-15 20:10:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanobacteriaceae.g__Methanobrevibacter
## 2023-03-15 20:10:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Loktanella
## 2023-03-15 20:10:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Maribacter
## 2023-03-15 20:10:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Symbiobacteriaceae.g__Symbiobacterium
## 2023-03-15 20:10:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinomycetospora
## 2023-03-15 20:10:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Fibrella
## 2023-03-15 20:10:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Delftia
## 2023-03-15 20:10:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pluralibacter
## 2023-03-15 20:10:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Propionicicella
## 2023-03-15 20:10:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Dicistroviridae.g__Aparavirus
## 2023-03-15 20:10:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Planctopirus
## 2023-03-15 20:10:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Crocosphaera
## 2023-03-15 20:10:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Erysipelatoclostridium
## 2023-03-15 20:10:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Tannerella
## 2023-03-15 20:10:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Borreliaceae.g__Borrelia
## 2023-03-15 20:10:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Dactylosporangium
## 2023-03-15 20:10:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Domibacillus
## 2023-03-15 20:10:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Faecalicoccus
## 2023-03-15 20:10:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Kocuria
## 2023-03-15 20:10:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Marinovum
## 2023-03-15 20:10:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Edwardsiella
## 2023-03-15 20:10:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Deinococcales.f__Trueperaceae.g__Truepera
## 2023-03-15 20:10:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Eikenella
## 2023-03-15 20:10:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Thermobrachium
## 2023-03-15 20:10:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Apibacter
## 2023-03-15 20:10:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Enterobacter
## 2023-03-15 20:10:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Polyomaviridae.g__Polyomavirus
## 2023-03-15 20:10:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Blautia
## 2023-03-15 20:10:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Belnapia
## 2023-03-15 20:10:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Candidatus_Profftella
## 2023-03-15 20:10:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Pseudomonadaceae.g__Azotobacter
## 2023-03-15 20:10:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Skermanella
## 2023-03-15 20:10:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Robinsoniella
## 2023-03-15 20:10:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Pseudobacteroides
## 2023-03-15 20:10:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Nesiotobacter
## 2023-03-15 20:10:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Hydrogenivirga
## 2023-03-15 20:10:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Promicromonospora
## 2023-03-15 20:10:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Anaerobaculum
## 2023-03-15 20:10:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Vulgatibacteraceae.g__Vulgatibacter
## 2023-03-15 20:10:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanothermaceae.g__Methanothermus
## 2023-03-15 20:10:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Methylophaga
## 2023-03-15 20:10:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Staphylococcaceae.g__Macrococcus
## 2023-03-15 20:10:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Ehrlichia
## 2023-03-15 20:10:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Synechocystis
## 2023-03-15 20:10:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Planctomyces
## 2023-03-15 20:10:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Kosakonia
## 2023-03-15 20:10:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Microbispora
## 2023-03-15 20:10:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Tsukamurellaceae.g__Tsukamurella
## 2023-03-15 20:10:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Elusimicrobia.c__Endomicrobia.o__Endomicrobiales.f__Endomicrobiaceae.g__Endomicrobium
## 2023-03-15 20:10:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Rhodothermaeota.c__Balneolia.o__Balneolales.f__Balneolaceae.g__Gracilimonas
## 2023-03-15 20:10:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sulfitobacter
## 2023-03-15 20:10:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Serinicoccus
## 2023-03-15 20:10:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Lechevalieria
## 2023-03-15 20:10:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobia_subdivision_3.g__Pedosphaera
## 2023-03-15 20:10:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanocellales.f__Methanocellaceae.g__Methanocella
## 2023-03-15 20:10:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Coleofasciculus
## 2023-03-15 20:10:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Amantichitinum
## 2023-03-15 20:10:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Aneurinibacillus
## 2023-03-15 20:10:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Limnohabitans
## 2023-03-15 20:10:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Mangrovimonas
## 2023-03-15 20:10:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Segniliparaceae.g__Segniliparus
## 2023-03-15 20:10:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Varicellovirus
## 2023-03-15 20:10:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Porticoccaceae.g__Porticoccus
## 2023-03-15 20:10:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Planomonospora
## 2023-03-15 20:10:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Knoellia
## 2023-03-15 20:10:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Buttiauxella
## 2023-03-15 20:10:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Sandaracinaceae.g__Sandaracinus
## 2023-03-15 20:10:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Micrococcus
## 2023-03-15 20:10:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermacoccaceae.g__Demetria
## 2023-03-15 20:10:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Aerococcaceae.g__Facklamia
## 2023-03-15 20:10:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Atopobiaceae.g__Atopobium
## 2023-03-15 20:10:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Candidatus_Soleaferrea
## 2023-03-15 20:10:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Caulobacterales.f__Caulobacteraceae.g__Phenylobacterium
## 2023-03-15 20:10:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Haliscomenobacter
## 2023-03-15 20:10:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Bifidobacteriales.f__Bifidobacteriaceae.g__Scardovia
## 2023-03-15 20:10:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Candidatus_Arthromitus
## 2023-03-15 20:10:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Amorphus
## 2023-03-15 20:10:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Mizugakiibacter
## 2023-03-15 20:10:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Xanthobacter
## 2023-03-15 20:10:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Acidobacteria.c__Blastocatellia.g__Chloracidobacterium
## 2023-03-15 20:10:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Campylobacteraceae.g__Arcobacter
## 2023-03-15 20:10:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Thermoactinomycetaceae.g__Risungbinella
## 2023-03-15 20:10:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Leifsonia
## 2023-03-15 20:10:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Tatumella
## 2023-03-15 20:10:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.g__Anaerosporomusa
## 2023-03-15 20:10:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Algoriphagus
## 2023-03-15 20:10:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Alicycliphilus
## 2023-03-15 20:10:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Clostridioides
## 2023-03-15 20:10:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Rufibacter
## 2023-03-15 20:10:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Papillomaviridae.g__Omegapapillomavirus
## 2023-03-15 20:10:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Demequinaceae.g__Demequina
## 2023-03-15 20:10:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Tepidicaulis
## 2023-03-15 20:10:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zobellia
## 2023-03-15 20:10:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Shigella
## 2023-03-15 20:10:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Ilumatobacter
## 2023-03-15 20:10:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfovermiculus
## 2023-03-15 20:10:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Candidatus_Aquiluna
## 2023-03-15 20:10:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Intrasporangium
## 2023-03-15 20:10:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Actinotalea
## 2023-03-15 20:10:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Opitutales.f__Opitutaceae.g__Opitutus
## 2023-03-15 20:10:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Flexithrix
## 2023-03-15 20:10:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Staphylococcaceae.g__Jeotgalicoccus
## 2023-03-15 20:10:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Chelatococcus
## 2023-03-15 20:10:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prevotellaceae.g__Alloprevotella
## 2023-03-15 20:10:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Xylophilus
## 2023-03-15 20:10:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Bafinivirus
## 2023-03-15 20:10:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Partitiviridae.g__Betapartitivirus
## 2023-03-15 20:10:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Succinivibrionaceae.g__Succinivibrio
## 2023-03-15 20:10:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Pseudopedobacter
## 2023-03-15 20:10:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Flammeovirga
## 2023-03-15 20:10:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Pirellula
## 2023-03-15 20:10:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Cellulosilyticum
## 2023-03-15 20:10:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Fodinicurvata
## 2023-03-15 20:10:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Phycodnaviridae.g__Prasinovirus
## 2023-03-15 20:10:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Ruminiclostridium
## 2023-03-15 20:10:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhizobiaceae.g__Agrobacterium
maaslin_PC_group_without <- function_Maaslin2(df_ACC_filter_Plate_Center_Voom_SNM, "Without_combined", "Temp/PC_group_without")
## [1] "Warning: Deleting existing log file: Temp/PC_group_without/maaslin2.log"
## 2023-03-15 20:10:26 INFO::Writing function arguments to log file
## 2023-03-15 20:10:26 INFO::Verifying options selected are valid
## 2023-03-15 20:10:26 INFO::Determining format of input files
## 2023-03-15 20:10:26 INFO::Input format is data samples as rows and metadata samples as rows
## 2023-03-15 20:10:26 INFO::Formula for random effects: expr ~ (1 | SEX) + (1 | Ethnicity_Race) + (1 | AGE) + (1 | Neoplasm_Status) + (1 | Clinical_Status_3_Mo_Post.Op) + (1 | Surgical_margin) + (1 | ATYPICAL_MITOTIC_FIGURES)
## 2023-03-15 20:10:26 INFO::Formula for fixed effects: expr ~  Without_combined
## 2023-03-15 20:10:26 INFO::Filter data based on min abundance and min prevalence
## 2023-03-15 20:10:26 INFO::Total samples in data: 77
## 2023-03-15 20:10:26 INFO::Min samples required with min abundance for a feature not to be filtered: 0.000000
## 2023-03-15 20:10:26 INFO::Total filtered features: 9
## 2023-03-15 20:10:26 INFO::Filtered feature names from abundance and prevalence filtering: k__Viruses.f__Chrysoviridae.g__Chrysovirus, k__Viruses.f__Hytrosaviridae.g__Muscavirus, k__Viruses.f__Closteroviridae.g__Crinivirus, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Nitrococcus, k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halomicrobium, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Azovibrio, k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Psychrobacillus, k__Bacteria.p__Thermotogae.c__Thermotogae.o__Petrotogales.g__Petrotoga, k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Aphanocapsa
## 2023-03-15 20:10:26 INFO::Total filtered features with variance filtering: 0
## 2023-03-15 20:10:26 INFO::Filtered feature names from variance filtering:
## 2023-03-15 20:10:26 INFO::Running selected normalization method: NONE
## 2023-03-15 20:10:26 INFO::Applying z-score to standardize continuous metadata
## 2023-03-15 20:10:26 INFO::Running selected transform method: NONE
## 2023-03-15 20:10:26 INFO::Running selected analysis method: LM
## 2023-03-15 20:10:26 INFO::Creating cluster of 6 R processes
## 2023-03-15 20:10:49 INFO::Counting total values for each feature
## 2023-03-15 20:10:49 WARNING::Deleting existing residuals file: Temp/PC_group_without/residuals.rds
## 2023-03-15 20:10:49 INFO::Writing residuals to file Temp/PC_group_without/residuals.rds
## 2023-03-15 20:10:49 WARNING::Deleting existing fitted file: Temp/PC_group_without/fitted.rds
## 2023-03-15 20:10:49 INFO::Writing fitted values to file Temp/PC_group_without/fitted.rds
## 2023-03-15 20:10:49 WARNING::Deleting existing ranef file: Temp/PC_group_without/ranef.rds
## 2023-03-15 20:10:49 INFO::Writing extracted random effects to file Temp/PC_group_without/ranef.rds
## 2023-03-15 20:10:49 INFO::Writing all results to file (ordered by increasing q-values): Temp/PC_group_without/all_results.tsv
## 2023-03-15 20:10:49 INFO::Writing the significant results (those which are less than or equal to the threshold of 0.250000 ) to file (ordered by increasing q-values): Temp/PC_group_without/significant_results.tsv
## 2023-03-15 20:10:49 INFO::Writing heatmap of significant results to file: Temp/PC_group_without/heatmap.pdf
## Warning in xtfrm.data.frame(x): cannot xtfrm data frames
## [1] "There is not enough metadata in the associations to create a heatmap plot. Please review the associations in text output file."
## 2023-03-15 20:10:49 INFO::Writing association plots (one for each significant association) to output folder: Temp/PC_group_without
## 2023-03-15 20:10:49 INFO::Plotting associations from most to least significant, grouped by metadata
## 2023-03-15 20:10:49 INFO::Plotting data for metadata number 1, Without_combined
## 2023-03-15 20:10:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Arhodomonas
## 2023-03-15 20:10:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Herpesvirales.f__Malacoherpesviridae.g__Ostreavirus
## 2023-03-15 20:10:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.g__Bacilladnavirus
## 2023-03-15 20:10:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Poxviridae.g__Parapoxvirus
## 2023-03-15 20:10:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Bicaudaviridae.g__Bicaudavirus
## 2023-03-15 20:10:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Bcep22likevirus
## 2023-03-15 20:10:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Poxviridae.g__Cervidpoxvirus
## 2023-03-15 20:10:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Lambdalikevirus
## 2023-03-15 20:10:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Anelloviridae.g__Alphatorquevirus
## 2023-03-15 20:10:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Barnyardlikevirus
## 2023-03-15 20:10:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Closteroviridae.g__Closterovirus
## 2023-03-15 20:10:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Fuselloviridae.g__Alphafusellovirus
## 2023-03-15 20:10:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Poxviridae.g__Avipoxvirus
## 2023-03-15 20:10:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Tymovirales.f__Betaflexiviridae.g__Foveavirus
## 2023-03-15 20:10:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Skunalikevirus
## 2023-03-15 20:10:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Cp220likevirus
## 2023-03-15 20:10:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Phikzlikevirus
## 2023-03-15 20:10:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Orthomyxoviridae.g__Influenzavirus_C
## 2023-03-15 20:10:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phi29likevirus
## 2023-03-15 20:10:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Caulimoviridae.g__Cavemovirus
## 2023-03-15 20:10:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Caulimoviridae.g__Caulimovirus
## 2023-03-15 20:10:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Bromoviridae.g__Alfamovirus
## 2023-03-15 20:10:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Sp6likevirus
## 2023-03-15 20:10:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Tymovirales.f__Alphaflexiviridae.g__Allexivirus
## 2023-03-15 20:10:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Parvoviridae.g__Ambidensovirus
## 2023-03-15 20:10:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Comovirus
## 2023-03-15 20:10:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.g__Polemovirus
## 2023-03-15 20:10:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Bromoviridae.g__Ilarvirus
## 2023-03-15 20:10:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Narnaviridae.g__Narnavirus
## 2023-03-15 20:10:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Totiviridae.g__Totivirus
## 2023-03-15 20:10:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Potyviridae.g__Tritimovirus
## 2023-03-15 20:10:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Papillomaviridae.g__Dyopipapillomavirus
## 2023-03-15 20:10:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Siccibacter
## 2023-03-15 20:10:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Methanomassiliicoccales.f__Methanomassiliicoccaceae.g__Candidatus_Methanomethylophilus
## 2023-03-15 20:10:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Nitritalea
## 2023-03-15 20:10:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Mangrovibacter
## 2023-03-15 20:10:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Reinekea
## 2023-03-15 20:10:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfospira
## 2023-03-15 20:10:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Arenitalea
## 2023-03-15 20:10:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Thermoactinomycetaceae.g__Shimazuella
## 2023-03-15 20:10:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Basilea
## 2023-03-15 20:10:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Alicyclobacillaceae.g__Effusibacillus
## 2023-03-15 20:10:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitinibacter
## 2023-03-15 20:10:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Myxosarcina
## 2023-03-15 20:10:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomarinum
## 2023-03-15 20:10:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Jeotgalibacillus
## 2023-03-15 20:10:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Zymobacter
## 2023-03-15 20:10:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Paeniglutamicibacter
## 2023-03-15 20:10:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halobellus
## 2023-03-15 20:10:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Cyclobacterium
## 2023-03-15 20:10:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Robiginitalea
## 2023-03-15 20:10:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Caldimicrobium
## 2023-03-15 20:10:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Actinopolymorpha
## 2023-03-15 20:10:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Candidatus_Phaeomarinobacter
## 2023-03-15 20:10:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Candidatus_Koribacter
## 2023-03-15 20:10:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Centipeda
## 2023-03-15 20:10:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Nautilia
## 2023-03-15 20:10:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Obesumbacterium
## 2023-03-15 20:10:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Alkalilimnicola
## 2023-03-15 20:10:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Aliiroseovarius
## 2023-03-15 20:10:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Stigonematales.g__Mastigocladopsis
## 2023-03-15 20:10:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Thaumarchaeota.o__Nitrosopumilales.f__Nitrosopumilaceae.g__Candidatus_Nitrosoarchaeum
## 2023-03-15 20:10:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Wolinella
## 2023-03-15 20:10:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Thaumarchaeota.o__Nitrosopumilales.f__Nitrosopumilaceae.g__Nitrosopumilus
## 2023-03-15 20:10:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Marinococcus
## 2023-03-15 20:10:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfobacula
## 2023-03-15 20:10:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Thermincola
## 2023-03-15 20:10:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Shuttleworthia
## 2023-03-15 20:10:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thalassobium
## 2023-03-15 20:10:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Mesonia
## 2023-03-15 20:10:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Basfia
## 2023-03-15 20:10:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Candidatus_Atelocyanobacterium
## 2023-03-15 20:10:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Coriobacterium
## 2023-03-15 20:10:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Marinagarivorans
## 2023-03-15 20:10:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Solitalea
## 2023-03-15 20:10:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Thermoplasmatales.f__Ferroplasmaceae.g__Ferroplasma
## 2023-03-15 20:10:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Bermanella
## 2023-03-15 20:10:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Rummeliibacillus
## 2023-03-15 20:10:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfurivibrio
## 2023-03-15 20:10:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Pseudobutyrivibrio
## 2023-03-15 20:10:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Kosmotogales.f__Kosmotogaceae.g__Mesotoga
## 2023-03-15 20:10:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Balneatrix
## 2023-03-15 20:10:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Sulfuricurvum
## 2023-03-15 20:10:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Dielma
## 2023-03-15 20:10:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Ardenticatenia.o__Ardenticatenales.f__Ardenticatenaceae.g__Ardenticatena
## 2023-03-15 20:10:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Halostagnicola
## 2023-03-15 20:10:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Legionellaceae.g__Tatlockia
## 2023-03-15 20:10:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Candidatus_Photodesmus
## 2023-03-15 20:10:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfonatronospira
## 2023-03-15 20:10:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Paucisalibacillus
## 2023-03-15 20:10:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Cloacibacillus
## 2023-03-15 20:10:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Thaumarchaeota.g__Candidatus_Nitrosotenuis
## 2023-03-15 20:10:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Subdoligranulum
## 2023-03-15 20:10:58 INFO::Creating boxplot for categorical data, Without_combined vs contaminant1Harvard
## 2023-03-15 20:10:58 INFO::Creating boxplot for categorical data, Without_combined vs contaminant2HarvardCanadaBaylorWashU
## 2023-03-15 20:10:58 INFO::Creating boxplot for categorical data, Without_combined vs contaminant3AllSeqCenters
## 2023-03-15 20:10:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Circoviridae.g__Gyrovirus
## 2023-03-15 20:10:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Papillomaviridae.g__Betapapillomavirus
## 2023-03-15 20:10:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Anelloviridae.g__Betatorquevirus
## 2023-03-15 20:10:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__T5likevirus
## 2023-03-15 20:10:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Natronomonas
## 2023-03-15 20:10:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Litoreibacter
## 2023-03-15 20:10:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__N4likevirus
## 2023-03-15 20:10:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudophaeobacter
## 2023-03-15 20:10:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Virgaviridae.g__Pecluvirus
## 2023-03-15 20:10:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanoregulaceae.g__Methanosphaerula
## 2023-03-15 20:10:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Sellimonas
## 2023-03-15 20:10:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Halolactibacillus
## 2023-03-15 20:10:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Nocardiopsaceae.g__Streptomonospora
## 2023-03-15 20:10:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phikmvlikevirus
## 2023-03-15 20:10:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.g__Aciduliprofundum
## 2023-03-15 20:10:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Gramella
## 2023-03-15 20:11:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__L5likevirus
## 2023-03-15 20:11:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Stanieria
## 2023-03-15 20:11:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Mimiviridae.g__Mimivirus
## 2023-03-15 20:11:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Candidatus_Methylopumilus
## 2023-03-15 20:11:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Nisaea
## 2023-03-15 20:11:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Coprobacter
## 2023-03-15 20:11:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Moranella
## 2023-03-15 20:11:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halanaeroarchaeum
## 2023-03-15 20:11:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Gallionella
## 2023-03-15 20:11:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Microvirgula
## 2023-03-15 20:11:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Puniceibacterium
## 2023-03-15 20:11:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Tolumonas
## 2023-03-15 20:11:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylothermaceae.g__Methylohalobius
## 2023-03-15 20:11:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiocystis
## 2023-03-15 20:11:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Rudanella
## 2023-03-15 20:11:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Youngiibacter
## 2023-03-15 20:11:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Agarivorans
## 2023-03-15 20:11:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Cryomorphaceae.g__Owenweeksia
## 2023-03-15 20:11:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Azonexus
## 2023-03-15 20:11:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatiglans
## 2023-03-15 20:11:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiorhodococcus
## 2023-03-15 20:11:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Gynuella
## 2023-03-15 20:11:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.g__Methyloceanibacter
## 2023-03-15 20:11:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Kandleria
## 2023-03-15 20:11:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Marinimicrobium
## 2023-03-15 20:11:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Legionellaceae.g__Fluoribacter
## 2023-03-15 20:11:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Dactylococcopsis
## 2023-03-15 20:11:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfotignum
## 2023-03-15 20:11:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pragia
## 2023-03-15 20:11:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Jejuia
## 2023-03-15 20:11:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Flexilinea
## 2023-03-15 20:11:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Halotalea
## 2023-03-15 20:11:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Poxviridae.g__Alphaentomopoxvirus
## 2023-03-15 20:11:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Cyanobacterium
## 2023-03-15 20:11:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Leeia
## 2023-03-15 20:11:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Pleurocapsa
## 2023-03-15 20:11:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Desulfuromonadaceae.g__Desulfuromonas
## 2023-03-15 20:11:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Ammonifex
## 2023-03-15 20:11:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Bhargavaea
## 2023-03-15 20:11:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Pseudaminobacter
## 2023-03-15 20:11:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermodesulfobiaceae.g__Thermodesulfobium
## 2023-03-15 20:11:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Poxviridae.g__Yatapoxvirus
## 2023-03-15 20:11:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Actinotignum
## 2023-03-15 20:11:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.f__Competibacteraceae.g__Candidatus_Competibacter
## 2023-03-15 20:11:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Thaumarchaeota.c__Nitrososphaeria.o__Nitrososphaerales.f__Nitrososphaeraceae.g__Nitrososphaera
## 2023-03-15 20:11:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Rhodothermaeota.c__Balneolia.o__Balneolales.f__Balneolaceae.g__Balneola
## 2023-03-15 20:11:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Acaricomes
## 2023-03-15 20:11:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ketogulonicigenium
## 2023-03-15 20:11:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Microcoleus
## 2023-03-15 20:11:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Campylobacteraceae.g__Sulfurospirillum
## 2023-03-15 20:11:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Chloroflexia.o__Chloroflexales.f__Oscillochloridaceae.g__Oscillochloris
## 2023-03-15 20:11:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halarchaeum
## 2023-03-15 20:11:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatirhabdium
## 2023-03-15 20:11:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Pelodictyon
## 2023-03-15 20:11:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Crocinitomicaceae.g__Crocinitomix
## 2023-03-15 20:11:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Hydrogenobacter
## 2023-03-15 20:11:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Lymphocryptovirus
## 2023-03-15 20:11:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.g__Candidatus_Babela
## 2023-03-15 20:11:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Methylocapsa
## 2023-03-15 20:11:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Herbiconiux
## 2023-03-15 20:11:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halalkalicoccus
## 2023-03-15 20:11:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Paraoerskovia
## 2023-03-15 20:11:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Hellea
## 2023-03-15 20:11:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Mimiviridae.g__Cafeteriavirus
## 2023-03-15 20:11:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Riesia
## 2023-03-15 20:11:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Hepeviridae.g__Piscihepevirus
## 2023-03-15 20:11:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Aurantimonadaceae.g__Fulvimarina
## 2023-03-15 20:11:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Amphibacillus
## 2023-03-15 20:11:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Thioploca
## 2023-03-15 20:11:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Fusobacteriaceae.g__Cetobacterium
## 2023-03-15 20:11:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Joostella
## 2023-03-15 20:11:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Franconibacter
## 2023-03-15 20:11:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Cryocola
## 2023-03-15 20:11:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Shimwellia
## 2023-03-15 20:11:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylococcus
## 2023-03-15 20:11:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Thermosynechococcus
## 2023-03-15 20:11:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sedimentitalea
## 2023-03-15 20:11:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Pyramidobacter
## 2023-03-15 20:11:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Spirochaetaceae.g__Salinispira
## 2023-03-15 20:11:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Oleispira
## 2023-03-15 20:11:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.o__Bacteroidetes_Order_II._Incertae_sedis.f__Rhodothermaceae.g__Salinibacter
## 2023-03-15 20:11:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Denitrobacterium
## 2023-03-15 20:11:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Glutamicibacter
## 2023-03-15 20:11:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Bdellovibrionales.f__Halobacteriovoraceae.g__Halobacteriovorax
## 2023-03-15 20:11:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Thermopetrobacter
## 2023-03-15 20:11:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.o__Bacteroidetes_Order_II._Incertae_sedis.f__Rhodothermaceae.g__Salisaeta
## 2023-03-15 20:11:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prevotellaceae.g__Hallella
## 2023-03-15 20:11:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Geovibrio
## 2023-03-15 20:11:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Derxia
## 2023-03-15 20:11:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Aestuariivita
## 2023-03-15 20:11:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Arenaviridae.g__Arenavirus
## 2023-03-15 20:11:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Aquamavirus
## 2023-03-15 20:11:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.g__Nitratifractor
## 2023-03-15 20:11:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Sphingorhabdus
## 2023-03-15 20:11:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Isosphaeraceae.g__Isosphaera
## 2023-03-15 20:11:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Microchaetaceae.g__Microchaete
## 2023-03-15 20:11:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oleiphilaceae.g__Oleiphilus
## 2023-03-15 20:11:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudorhodobacter
## 2023-03-15 20:11:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Coprococcus
## 2023-03-15 20:11:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Melissococcus
## 2023-03-15 20:11:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Terasakiella
## 2023-03-15 20:11:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Anaerostipes
## 2023-03-15 20:11:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Mucispirillum
## 2023-03-15 20:11:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Marvinbryantia
## 2023-03-15 20:11:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Tunalikevirus
## 2023-03-15 20:11:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinosynnema
## 2023-03-15 20:11:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Halobacteroides
## 2023-03-15 20:11:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Silanimonas
## 2023-03-15 20:11:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Starkeya
## 2023-03-15 20:11:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Kushneria
## 2023-03-15 20:11:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Nodosilinea
## 2023-03-15 20:11:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Simiduia
## 2023-03-15 20:11:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Sporomusaceae.g__Pelosinus
## 2023-03-15 20:11:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Lactobacillaceae.g__Sharpea
## 2023-03-15 20:11:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfonatronovibrio
## 2023-03-15 20:11:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Yokenella
## 2023-03-15 20:11:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Acidocella
## 2023-03-15 20:11:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Thiolapillus
## 2023-03-15 20:11:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Halieaceae.g__Congregibacter
## 2023-03-15 20:11:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Kordiimonadales.f__Kordiimonadaceae.g__Kordiimonas
## 2023-03-15 20:11:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Propionispira
## 2023-03-15 20:11:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Lunatimonas
## 2023-03-15 20:11:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Salegentibacter
## 2023-03-15 20:11:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Synergistes
## 2023-03-15 20:11:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Acidobacterium
## 2023-03-15 20:11:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thalassobacter
## 2023-03-15 20:11:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.f__Leptospiraceae.g__Leptonema
## 2023-03-15 20:11:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Lentibacillus
## 2023-03-15 20:11:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Caulobacterales.f__Caulobacteraceae.g__Woodsholea
## 2023-03-15 20:11:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Beggiatoa
## 2023-03-15 20:11:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Betacoronavirus
## 2023-03-15 20:11:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Stappia
## 2023-03-15 20:11:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Carnobacteriaceae.g__Alloiococcus
## 2023-03-15 20:11:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Enterorhabdus
## 2023-03-15 20:11:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Gallaecimonas
## 2023-03-15 20:11:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Kribbella
## 2023-03-15 20:11:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Salinimicrobium
## 2023-03-15 20:11:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Virgibacillus
## 2023-03-15 20:11:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Caminibacter
## 2023-03-15 20:11:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Phycodnaviridae.g__Coccolithovirus
## 2023-03-15 20:11:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Thermodesulfatator
## 2023-03-15 20:11:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Thermales.f__Thermaceae.g__Oceanithermus
## 2023-03-15 20:11:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Hydrogenophilales.f__Hydrogenophilaceae.g__Thiobacillus
## 2023-03-15 20:11:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Alkaliphilus
## 2023-03-15 20:11:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Tistrella
## 2023-03-15 20:11:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Thalassobaculum
## 2023-03-15 20:11:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitiniphilus
## 2023-03-15 20:11:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Vitreoscilla
## 2023-03-15 20:11:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Baculoviridae.g__Deltabaculovirus
## 2023-03-15 20:11:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Alphacoronavirus
## 2023-03-15 20:11:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Ishikawaella
## 2023-03-15 20:11:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Sediminibacter
## 2023-03-15 20:11:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Candidatus_Neoehrlichia
## 2023-03-15 20:11:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Halorhodospira
## 2023-03-15 20:11:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Bifidobacteriales.f__Bifidobacteriaceae.g__Alloscardovia
## 2023-03-15 20:11:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Dicistroviridae.g__Cripavirus
## 2023-03-15 20:11:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Gemmobacter
## 2023-03-15 20:11:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Crenobacter
## 2023-03-15 20:11:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Hahellaceae.g__Hahella
## 2023-03-15 20:11:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Pseudohongiella
## 2023-03-15 20:11:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Nitrosococcus
## 2023-03-15 20:11:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Thioalkalimicrobium
## 2023-03-15 20:11:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Rubritepida
## 2023-03-15 20:11:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Thaumarchaeota.g__Candidatus_Nitrosopelagicus
## 2023-03-15 20:11:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Confluentimicrobium
## 2023-03-15 20:11:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Verrucomicrobia.c__Spartobacteria.g__Terrimicrobium
## 2023-03-15 20:11:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Dongia
## 2023-03-15 20:11:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Akkermansiaceae.g__Akkermansia
## 2023-03-15 20:11:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Ideonella
## 2023-03-15 20:11:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.o__Haloplasmatales.f__Haloplasmataceae.g__Haloplasma
## 2023-03-15 20:11:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Asaia
## 2023-03-15 20:11:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylobacillus
## 2023-03-15 20:11:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Aeribacillus
## 2023-03-15 20:11:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Hafnia
## 2023-03-15 20:11:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Acidobacteria.c__Solibacteres.o__Solibacterales.g__Bryobacter
## 2023-03-15 20:11:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Enorma
## 2023-03-15 20:11:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Prochlorales.f__Prochlorotrichaceae.g__Prochlorothrix
## 2023-03-15 20:11:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Chitinimonas
## 2023-03-15 20:11:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Kibdelosporangium
## 2023-03-15 20:11:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Fabavirus
## 2023-03-15 20:11:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Archaeoglobi.o__Archaeoglobales.f__Archaeoglobaceae.g__Geoglobus
## 2023-03-15 20:11:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Chelativorans
## 2023-03-15 20:11:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bradyrhizobiaceae.g__Oligotropha
## 2023-03-15 20:11:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Leucothrix
## 2023-03-15 20:11:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Thermoplasmatales.f__Picrophilaceae.g__Picrophilus
## 2023-03-15 20:11:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Polycyclovorans
## 2023-03-15 20:11:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Raphidiopsis
## 2023-03-15 20:11:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Hydrogenovibrio
## 2023-03-15 20:11:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfarculales.f__Desulfarculaceae.g__Desulfarculus
## 2023-03-15 20:11:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Candidatus_Desulforudis
## 2023-03-15 20:11:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Nonlabens
## 2023-03-15 20:11:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Iridoviridae.g__Ranavirus
## 2023-03-15 20:11:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Stigonematales.g__Hapalosiphon
## 2023-03-15 20:11:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Microbulbiferaceae.g__Microbulbifer
## 2023-03-15 20:11:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methermicoccaceae.g__Methermicoccus
## 2023-03-15 20:11:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Proteus
## 2023-03-15 20:11:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Flavisolibacter
## 2023-03-15 20:11:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Ponticaulis
## 2023-03-15 20:11:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Salinarchaeum
## 2023-03-15 20:11:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Yaniella
## 2023-03-15 20:11:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Lentisphaerae.c__Lentisphaeria.o__Lentisphaerales.f__Lentisphaeraceae.g__Lentisphaera
## 2023-03-15 20:11:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Verrucosispora
## 2023-03-15 20:11:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Fibrobacteres.c__Fibrobacteria.o__Fibrobacterales.f__Fibrobacteraceae.g__Fibrobacter
## 2023-03-15 20:11:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Carboxydothermus
## 2023-03-15 20:11:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Leptotrichiaceae.g__Streptobacillus
## 2023-03-15 20:11:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Isoptericola
## 2023-03-15 20:11:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Anaerofustis
## 2023-03-15 20:11:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinopolysporales.f__Actinopolysporaceae.g__Actinopolyspora
## 2023-03-15 20:11:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Parvibaculum
## 2023-03-15 20:11:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Cedecea
## 2023-03-15 20:11:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Steroidobacter
## 2023-03-15 20:11:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Anaerovibrio
## 2023-03-15 20:11:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Fictibacillus
## 2023-03-15 20:11:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_III._Incertae_Sedis.g__Thermosediminibacter
## 2023-03-15 20:11:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Granulicella
## 2023-03-15 20:11:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Virgaviridae.g__Pomovirus
## 2023-03-15 20:11:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Teredinibacter
## 2023-03-15 20:11:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Microthrixaceae.g__Candidatus_Microthrix
## 2023-03-15 20:11:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Chitinophaga
## 2023-03-15 20:11:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanobacteriaceae.g__Methanosphaera
## 2023-03-15 20:11:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Rouxiella
## 2023-03-15 20:11:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Chlamydiaceae.g__Chlamydia
## 2023-03-15 20:11:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Glycomycetales.f__Glycomycetaceae.g__Haloglycomyces
## 2023-03-15 20:11:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Nostoc
## 2023-03-15 20:11:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Hahellaceae.g__Zooshikella
## 2023-03-15 20:11:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zhouia
## 2023-03-15 20:11:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Fusobacteriaceae.g__Ilyobacter
## 2023-03-15 20:11:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Peptostreptococcus
## 2023-03-15 20:11:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Dinoroseobacter
## 2023-03-15 20:11:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Catelliglobosispora
## 2023-03-15 20:11:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Senegalimassilia
## 2023-03-15 20:11:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Ornatilinea
## 2023-03-15 20:11:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Luteibacter
## 2023-03-15 20:11:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Blastomonas
## 2023-03-15 20:11:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Kurthia
## 2023-03-15 20:11:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Zymomonas
## 2023-03-15 20:11:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Paludibacterium
## 2023-03-15 20:11:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Viridibacillus
## 2023-03-15 20:11:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chrysiogenetes.c__Chrysiogenetes.o__Chrysiogenales.f__Chrysiogenaceae.g__Desulfurispirillum
## 2023-03-15 20:11:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Ferrimicrobium
## 2023-03-15 20:11:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Isosphaeraceae.g__Singulisphaera
## 2023-03-15 20:11:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Bacteroidaceae.g__Bacteroides
## 2023-03-15 20:11:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Geobacteraceae.g__Geoalkalibacter
## 2023-03-15 20:11:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Pelagibacterium
## 2023-03-15 20:11:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Kluyvera
## 2023-03-15 20:11:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Dechloromonas
## 2023-03-15 20:11:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.g__Thermorudis
## 2023-03-15 20:11:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Nesiotobacter
## 2023-03-15 20:11:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Diaphorobacter
## 2023-03-15 20:11:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Gulosibacter
## 2023-03-15 20:11:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Desulfurococcaceae.g__Ignicoccus
## 2023-03-15 20:11:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Pseudolabrys
## 2023-03-15 20:11:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Arenimonas
## 2023-03-15 20:11:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Magnetococcales.f__Magnetococcaceae.g__Magnetococcus
## 2023-03-15 20:11:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Sandarakinorhabdus
## 2023-03-15 20:11:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Silvibacterium
## 2023-03-15 20:11:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Sporolactobacillaceae.g__Tuberibacillus
## 2023-03-15 20:11:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Limnochordia.o__Limnochordales.f__Limnochordaceae.g__Limnochorda
## 2023-03-15 20:11:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Candidatus_Stoquefichus
## 2023-03-15 20:11:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.g__Timonella
## 2023-03-15 20:11:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Prauserella
## 2023-03-15 20:11:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Haloterrigena
## 2023-03-15 20:11:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Spirochaetaceae.g__Treponema
## 2023-03-15 20:11:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseivivax
## 2023-03-15 20:11:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Kineosporiales.f__Kineosporiaceae.g__Kineosporia
## 2023-03-15 20:11:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Micavibrio
## 2023-03-15 20:11:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Caliciviridae.g__Vesivirus
## 2023-03-15 20:11:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Dermatophilus
## 2023-03-15 20:11:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Thermanaerovibrio
## 2023-03-15 20:11:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Maribius
## 2023-03-15 20:11:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Faecalibaculum
## 2023-03-15 20:11:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Mannheimia
## 2023-03-15 20:11:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Opitutales.f__Opitutaceae.g__Cephaloticoccus
## 2023-03-15 20:11:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Faecalicoccus
## 2023-03-15 20:11:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobiaceae.g__Haloferula
## 2023-03-15 20:11:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cardiobacteriales.f__Cardiobacteriaceae.g__Dichelobacter
## 2023-03-15 20:11:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Gulbenkiania
## 2023-03-15 20:11:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bradyrhizobiaceae.g__Tardiphaga
## 2023-03-15 20:11:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sneathiellales.f__Sneathiellaceae.g__Sneathiella
## 2023-03-15 20:11:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Gimesia
## 2023-03-15 20:11:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Spounalikevirus
## 2023-03-15 20:11:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Paenirhodobacter
## 2023-03-15 20:11:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.g__Candidatus_Azobacteroides
## 2023-03-15 20:11:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Eggerthella
## 2023-03-15 20:11:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Vitellibacter
## 2023-03-15 20:11:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Capnocytophaga
## 2023-03-15 20:11:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Neptunomonas
## 2023-03-15 20:11:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Leptotrichiaceae.g__Sebaldella
## 2023-03-15 20:11:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Fodinicurvata
## 2023-03-15 20:11:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Wenxinia
## 2023-03-15 20:11:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sulfitobacter
## 2023-03-15 20:11:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfobulbus
## 2023-03-15 20:11:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Wolbachia
## 2023-03-15 20:11:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Oceanibaculum
## 2023-03-15 20:11:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Methylibium
## 2023-03-15 20:11:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Dokdonella
## 2023-03-15 20:11:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Alkaliflexus
## 2023-03-15 20:11:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Poxviridae.g__Capripoxvirus
## 2023-03-15 20:11:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Rubrivivax
## 2023-03-15 20:11:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thioflavicoccus
## 2023-03-15 20:11:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Adenoviridae.g__Mastadenovirus
## 2023-03-15 20:11:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Saccharibacter
## 2023-03-15 20:11:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Rhizobacter
## 2023-03-15 20:11:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.g__Acidibacillus
## 2023-03-15 20:11:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Gordoniaceae.g__Gordonia
## 2023-03-15 20:11:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Thermonemataceae.g__Thermonema
## 2023-03-15 20:11:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Neorickettsia
## 2023-03-15 20:11:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Acidobacteria.c__Solibacteres.o__Solibacterales.f__Solibacteraceae.g__Candidatus_Solibacter
## 2023-03-15 20:11:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Geofilum
## 2023-03-15 20:11:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Sanguibacteroides
## 2023-03-15 20:11:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Terracoccus
## 2023-03-15 20:11:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Sciscionella
## 2023-03-15 20:11:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Echinicola
## 2023-03-15 20:11:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Flexithrix
## 2023-03-15 20:11:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Saccharibacillus
## 2023-03-15 20:11:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Thiorhodospira
## 2023-03-15 20:11:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Hamadaea
## 2023-03-15 20:11:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Polynucleobacter
## 2023-03-15 20:11:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Cytophaga
## 2023-03-15 20:11:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Agrococcus
## 2023-03-15 20:11:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Herpesvirales.f__Alloherpesviridae.g__Batrachovirus
## 2023-03-15 20:11:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Bellilinea
## 2023-03-15 20:11:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Oceanicaulis
## 2023-03-15 20:11:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Nakamurellales.f__Nakamurellaceae.g__Nakamurella
## 2023-03-15 20:11:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Eikenella
## 2023-03-15 20:11:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Hydrogenibacillus
## 2023-03-15 20:11:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Citromicrobium
## 2023-03-15 20:11:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Porticoccaceae.g__Porticoccus
## 2023-03-15 20:11:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Weeksella
## 2023-03-15 20:11:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Marinilabilia
## 2023-03-15 20:11:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Vibrio
## 2023-03-15 20:11:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Rubinisphaera
## 2023-03-15 20:11:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Haematospirillum
## 2023-03-15 20:11:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Salimicrobium
## 2023-03-15 20:11:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Herpesvirales.f__Alloherpesviridae.g__Ictalurivirus
## 2023-03-15 20:11:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Plantibacter
## 2023-03-15 20:11:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Nitrospirae.c__Nitrospira.o__Nitrospirales.f__Nitrospiraceae.g__Candidatus_Magnetobacterium
## 2023-03-15 20:11:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Thermococcus
## 2023-03-15 20:11:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Simplexvirus
## 2023-03-15 20:11:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Regiella
## 2023-03-15 20:11:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Spiribacter
## 2023-03-15 20:11:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Johnsonella
## 2023-03-15 20:11:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Haliscomenobacter
## 2023-03-15 20:11:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Kinetoplastibacterium
## 2023-03-15 20:11:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinomycetospora
## 2023-03-15 20:11:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylobacteriaceae.g__Meganema
## 2023-03-15 20:11:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.g__Emaravirus
## 2023-03-15 20:11:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Emticicia
## 2023-03-15 20:11:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Skermanella
## 2023-03-15 20:11:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Commensalibacter
## 2023-03-15 20:11:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhizobiaceae.g__Neorhizobium
## 2023-03-15 20:11:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Microchaetaceae.g__Tolypothrix
## 2023-03-15 20:11:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Spirosoma
## 2023-03-15 20:11:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Flavihumibacter
## 2023-03-15 20:11:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Verrucomicrobia.o__Methylacidiphilales.f__Methylacidiphilaceae.g__Methylacidiphilum
## 2023-03-15 20:11:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Polydnaviridae.g__Ichnovirus
## 2023-03-15 20:11:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Bdellovibrionales.f__Bacteriovoracaceae.g__Bacteriovorax
## 2023-03-15 20:11:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Mucilaginibacter
## 2023-03-15 20:11:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Lyngbya
## 2023-03-15 20:11:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylosarcina
## 2023-03-15 20:11:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Kiloniellales.f__Kiloniellaceae.g__Kiloniella
## 2023-03-15 20:11:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Veillonellales.f__Veillonellaceae.g__Megasphaera
## 2023-03-15 20:11:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Pseudoalteromonadaceae.g__Pseudoalteromonas
## 2023-03-15 20:11:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Thermoactinomycetaceae.g__Thermoactinomyces
## 2023-03-15 20:11:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Orenia
## 2023-03-15 20:11:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Lacinutrix
## 2023-03-15 20:11:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Oceanibulbus
## 2023-03-15 20:11:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Haloferax
## 2023-03-15 20:11:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Leuconostocaceae.g__Leuconostoc
## 2023-03-15 20:11:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Xylophilus
## 2023-03-15 20:11:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Mitsuokella
## 2023-03-15 20:11:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Solibacillus
## 2023-03-15 20:11:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Thermobrachium
## 2023-03-15 20:11:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Catabacteriaceae.g__Catabacter
## 2023-03-15 20:11:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudovibrio
## 2023-03-15 20:11:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Mobilicoccus
## 2023-03-15 20:11:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methanosarcinaceae.g__Methanosarcina
## 2023-03-15 20:11:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Arcticibacter
## 2023-03-15 20:11:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Aeromonas
## 2023-03-15 20:11:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Candidatus_Glomeribacter
## 2023-03-15 20:11:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Saccharomonospora
## 2023-03-15 20:11:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Knoellia
## 2023-03-15 20:11:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Lebetimonas
## 2023-03-15 20:11:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Agreia
## 2023-03-15 20:11:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Polyangiaceae.g__Chondromyces
## 2023-03-15 20:11:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Gemmata
## 2023-03-15 20:11:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.g__Candidatus_Hepatobacter
## 2023-03-15 20:11:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Holosporaceae.g__Holospora
## 2023-03-15 20:11:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Candidatus_Arthromitus
## 2023-03-15 20:11:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Hydrogenivirga
## 2023-03-15 20:11:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Kosakonia
## 2023-03-15 20:11:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Odoribacteraceae.g__Odoribacter
## 2023-03-15 20:11:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Microbispora
## 2023-03-15 20:11:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanococci.o__Methanococcales.f__Methanococcaceae.g__Methanothermococcus
## 2023-03-15 20:11:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Pseudomonadaceae.g__Oblitimonas
## 2023-03-15 20:11:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_III._Incertae_Sedis.g__Caldicellulosiruptor
## 2023-03-15 20:11:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Colwellia
## 2023-03-15 20:11:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Clostridium
## 2023-03-15 20:11:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Tenacibaculum
## 2023-03-15 20:11:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Aquimarina
## 2023-03-15 20:11:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Vulgatibacteraceae.g__Vulgatibacter
## 2023-03-15 20:11:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Tetrasphaera
## 2023-03-15 20:11:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Microtetraspora
## 2023-03-15 20:11:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Marivirga
## 2023-03-15 20:11:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Cylindrospermum
## 2023-03-15 20:11:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Sediminibacterium
## 2023-03-15 20:11:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Myroides
## 2023-03-15 20:11:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Xanthobacter
## 2023-03-15 20:11:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Blochmannia
## 2023-03-15 20:11:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfomicrobiaceae.g__Desulfomicrobium
## 2023-03-15 20:11:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Anaeromyxobacteraceae.g__Anaeromyxobacter
## 2023-03-15 20:11:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Catenulisporales.f__Actinospicaceae.g__Actinospica
## 2023-03-15 20:11:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Gracilibacillus
## 2023-03-15 20:11:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfovibrionaceae.g__Lawsonia
## 2023-03-15 20:11:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Acetohalobium
## 2023-03-15 20:11:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Leifsonia
## 2023-03-15 20:11:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Methanomassiliicoccales.f__Methanomassiliicoccaceae.g__Candidatus_Methanoplasma
## 2023-03-15 20:11:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Carnobacteriaceae.g__Jeotgalibaca
## 2023-03-15 20:11:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Fibrella
## 2023-03-15 20:11:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Jannaschia
## 2023-03-15 20:11:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Methylophaga
## 2023-03-15 20:11:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Slackia
## 2023-03-15 20:11:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Buttiauxella
## 2023-03-15 20:11:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobiaceae.g__Verrucomicrobium
## 2023-03-15 20:11:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Frankiales.f__Sporichthyaceae.g__Sporichthya
## 2023-03-15 20:11:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Symbiobacteriaceae.g__Symbiobacterium
## 2023-03-15 20:11:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanococci.o__Methanococcales.f__Methanococcaceae.g__Methanococcus
## 2023-03-15 20:11:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Oxalobacteraceae.g__Herminiimonas
## 2023-03-15 20:11:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Pirellula
## 2023-03-15 20:11:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Helcococcus
## 2023-03-15 20:11:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.g__Anaerosporomusa
## 2023-03-15 20:11:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Raoultella
## 2023-03-15 20:11:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Waddliaceae.g__Waddlia
## 2023-03-15 20:11:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Waikavirus
## 2023-03-15 20:11:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobia_subdivision_3.g__Pedosphaera
## 2023-03-15 20:11:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Photobacterium
## 2023-03-15 20:11:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Thermotogaceae.g__Thermotoga
## 2023-03-15 20:11:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Rhodothermaeota.c__Balneolia.o__Balneolales.f__Balneolaceae.g__Gracilimonas
## 2023-03-15 20:11:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfobacterium
## 2023-03-15 20:11:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfovibrionaceae.g__Bilophila
## 2023-03-15 20:11:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Cycloclasticus
## 2023-03-15 20:11:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Segetibacter
## 2023-03-15 20:11:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Ventosimonadaceae.g__Ventosimonas
## 2023-03-15 20:11:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Pseudobacteroides
## 2023-03-15 20:11:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Belliella
## 2023-03-15 20:11:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Circoviridae.g__Circovirus
## 2023-03-15 20:11:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Amorphus
## 2023-03-15 20:11:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Gemmatimonadetes.c__Gemmatimonadetes.o__Gemmatimonadales.f__Gemmatimonadaceae.g__Gemmatirosa
## 2023-03-15 20:11:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Flaviviridae.g__Pestivirus
## 2023-03-15 20:11:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Defluviimonas
## 2023-03-15 20:11:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Paracaedibacteraceae.g__Candidatus_Paracaedibacter
## 2023-03-15 20:11:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Schleiferiaceae.g__Schleiferia
## 2023-03-15 20:11:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Paraburkholderia
## 2023-03-15 20:11:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.g__Elioraea
## 2023-03-15 20:11:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Thermosulfurimonas
## 2023-03-15 20:11:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Bifidobacteriales.f__Bifidobacteriaceae.g__Scardovia
## 2023-03-15 20:11:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Fervidobacteriaceae.g__Thermosipho
## 2023-03-15 20:11:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Psychroflexus
## 2023-03-15 20:11:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Chelatococcus
## 2023-03-15 20:11:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophobacteraceae.g__Syntrophobacter
## 2023-03-15 20:11:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.g__Higrevirus
## 2023-03-15 20:11:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Tamlana
## 2023-03-15 20:11:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Xenococcus
## 2023-03-15 20:11:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Kineosphaera
## 2023-03-15 20:11:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Salivirus
## 2023-03-15 20:11:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Rufibacter
## 2023-03-15 20:11:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Criblamydiaceae.g__Criblamydia
## 2023-03-15 20:11:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Halocynthiibacter
## 2023-03-15 20:11:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Fervidicella
## 2023-03-15 20:11:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanothermaceae.g__Methanothermus
## 2023-03-15 20:11:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Heliobacteriaceae.g__Heliobacterium
## 2023-03-15 20:11:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Planctomyces
## 2023-03-15 20:11:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Cellulosilyticum
## 2023-03-15 20:11:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Hylemonella
## 2023-03-15 20:11:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Oribacterium
## 2023-03-15 20:11:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Caulobacterales.f__Caulobacteraceae.g__Phenylobacterium
## 2023-03-15 20:11:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Advenella
## 2023-03-15 20:11:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Tepidicaulis
## 2023-03-15 20:11:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Blastochloris
## 2023-03-15 20:11:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Bafinivirus
## 2023-03-15 20:11:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Falsirhodobacter
## 2023-03-15 20:11:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Hamiltonella
## 2023-03-15 20:11:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Thauera
## 2023-03-15 20:11:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Gorillibacterium
## 2023-03-15 20:11:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Nitrosomonadales.f__Nitrosomonadaceae.g__Nitrosospira
## 2023-03-15 20:11:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Methylopila
## 2023-03-15 20:11:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Methylocella
## 2023-03-15 20:11:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Persicobacteraceae.g__Persicobacter
## 2023-03-15 20:11:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bradyrhizobiaceae.g__Rhodopseudomonas
## 2023-03-15 20:11:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Aurantimonadaceae.g__Martelella
## 2023-03-15 20:11:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Ilumatobacter
## 2023-03-15 20:11:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Vagococcus
## 2023-03-15 20:11:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Sandaracinaceae.g__Sandaracinus
## 2023-03-15 20:11:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halapricum
## 2023-03-15 20:11:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Inquilinus
## 2023-03-15 20:11:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Enteractinococcus
## 2023-03-15 20:11:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiorhodovibrio
## 2023-03-15 20:11:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Lampropedia
## 2023-03-15 20:11:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylobacteriaceae.g__Microvirga
## 2023-03-15 20:11:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Olleya
## 2023-03-15 20:11:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Sphaerotilus
## 2023-03-15 20:11:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfosarcina
## 2023-03-15 20:11:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Xylella
## 2023-03-15 20:11:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Yersinia
## 2023-03-15 20:11:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Lentimicrobiaceae.g__Lentimicrobium
## 2023-03-15 20:11:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Candidatus_Aquiluna
## 2023-03-15 20:11:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Pleomorphomonas
## 2023-03-15 20:11:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.g__Fangia
## 2023-03-15 20:11:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Planktothrix
## 2023-03-15 20:11:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiocapsa
## 2023-03-15 20:11:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Rubellimicrobium
## 2023-03-15 20:11:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Histophilus
## 2023-03-15 20:11:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Stenoxybacter
## 2023-03-15 20:11:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Carnimonas
## 2023-03-15 20:11:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Petrotogales.g__Defluviitoga
## 2023-03-15 20:11:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Thermobacillus
## 2023-03-15 20:11:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Coprobacillus
## 2023-03-15 20:11:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Opitutales.f__Opitutaceae.g__Opitutus
## 2023-03-15 20:11:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thioclava
## 2023-03-15 20:11:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Thermomonosporaceae.g__Spirillospora
## 2023-03-15 20:11:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Jonquetella
## 2023-03-15 20:11:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Dehalococcoidia.o__Dehalococcoidales.f__Dehalococcoidaceae.g__Dehalococcoides
## 2023-03-15 20:11:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Kamptonema
## 2023-03-15 20:11:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Riemerella
## 2023-03-15 20:11:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Pandoraea
## 2023-03-15 20:11:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Salinisphaerales.f__Salinisphaeraceae.g__Salinisphaera
## 2023-03-15 20:11:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Phycodnaviridae.g__Phaeovirus
## 2023-03-15 20:11:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Paucibacter
## 2023-03-15 20:11:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Candidatus_Cloacimonetes.g__Candidatus_Cloacimonas
## 2023-03-15 20:11:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Aneurinibacillus
## 2023-03-15 20:11:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Baculoviridae.g__Alphabaculovirus
## 2023-03-15 20:11:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Thiomicrospira
## 2023-03-15 20:11:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Staphylococcaceae.g__Jeotgalicoccus
## 2023-03-15 20:11:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Promicromonospora
## 2023-03-15 20:11:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Clostridioides
## 2023-03-15 20:11:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Caldiserica.c__Caldisericia.o__Caldisericales.f__Caldisericaceae.g__Caldisericum
## 2023-03-15 20:11:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Adenoviridae.g__Aviadenovirus
## 2023-03-15 20:11:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.f__Leptospiraceae.g__Turneriella
## 2023-03-15 20:11:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Thermocrispum
## 2023-03-15 20:11:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.g__Candidatus_Sulcia
## 2023-03-15 20:11:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Gillisia
## 2023-03-15 20:11:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylocaldum
## 2023-03-15 20:11:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Pasteurella
## 2023-03-15 20:11:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Pimelobacter
## 2023-03-15 20:11:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Campylobacteraceae.g__Campylobacter
## 2023-03-15 20:11:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Rhodopirellula
## 2023-03-15 20:11:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Apibacter
## 2023-03-15 20:11:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Magnetospira
## 2023-03-15 20:11:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Poxviridae.g__Betaentomopoxvirus
## 2023-03-15 20:11:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Prosthecomicrobium
## 2023-03-15 20:11:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Hymenobacter
## 2023-03-15 20:11:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Trueperella
## 2023-03-15 20:11:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Sinomonas
## 2023-03-15 20:11:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Nannocystaceae.g__Plesiocystis
## 2023-03-15 20:11:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Polyangiaceae.g__Sorangium
## 2023-03-15 20:11:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Rhodoplanes
## 2023-03-15 20:11:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Leuconostocaceae.g__Weissella
## 2023-03-15 20:11:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Cyanothece
## 2023-03-15 20:11:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Cobetia
## 2023-03-15 20:11:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Candidatus_Evansia
## 2023-03-15 20:11:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Carnobacteriaceae.g__Allofustis
## 2023-03-15 20:11:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Cellulosimicrobium
## 2023-03-15 20:11:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bartonellaceae.g__Bartonella
## 2023-03-15 20:11:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Chlorobium
## 2023-03-15 20:11:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Cryptobacterium
## 2023-03-15 20:11:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Mycoplasmatales.f__Mycoplasmataceae.g__Ureaplasma
## 2023-03-15 20:11:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Bibersteinia
## 2023-03-15 20:11:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Gilvimarinus
## 2023-03-15 20:11:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Terrabacter
## 2023-03-15 20:11:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halorubrum
## 2023-03-15 20:11:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Imtechella
## 2023-03-15 20:11:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Rhodobacter
## 2023-03-15 20:11:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseovarius
## 2023-03-15 20:11:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Streptosporangium
## 2023-03-15 20:11:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseobacter
## 2023-03-15 20:11:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Caenimonas
## 2023-03-15 20:11:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Psychromonadaceae.g__Psychromonas
## 2023-03-15 20:11:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhizobiaceae.g__Agrobacterium
## 2023-03-15 20:11:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Roseateles
## 2023-03-15 20:11:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Acidaminococcales.f__Acidaminococcaceae.g__Succinispira
## 2023-03-15 20:11:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophaceae.g__Desulfobacca
## 2023-03-15 20:11:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Rickettsiaceae.g__Orientia
## 2023-03-15 20:11:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halosimplex
## 2023-03-15 20:11:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Entomoplasmatales.f__Entomoplasmataceae.g__Entomoplasma
## 2023-03-15 20:11:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Jiangellales.f__Jiangellaceae.g__Jiangella
## 2023-03-15 20:11:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Ornithobacterium
## 2023-03-15 20:11:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Haemophilus
## 2023-03-15 20:11:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanococci.o__Methanococcales.f__Methanocaldococcaceae.g__Methanocaldococcus
## 2023-03-15 20:11:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Marinobacterium
## 2023-03-15 20:11:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Pontibacter
## 2023-03-15 20:11:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Listeriaceae.g__Listeria
## 2023-03-15 20:11:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Chlorobaculum
## 2023-03-15 20:11:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Nafulsella
## 2023-03-15 20:11:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Uliginosibacterium
## 2023-03-15 20:11:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Kosmotogales.f__Kosmotogaceae.g__Kosmotoga
## 2023-03-15 20:11:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Lachnoanaerobaculum
## 2023-03-15 20:11:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methanosarcinaceae.g__Methanomethylovorans
## 2023-03-15 20:11:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Lewinella
## 2023-03-15 20:11:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Hepatovirus
## 2023-03-15 20:11:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Mobiluncus
## 2023-03-15 20:11:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Fibrobacteres.c__Chitinispirillia.o__Chitinispirillales.f__Chitinispirillaceae.g__Chitinispirillum
## 2023-03-15 20:11:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Actinotalea
## 2023-03-15 20:11:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Candidatus_Endolissoclinum
## 2023-03-15 20:11:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Veillonellales.f__Veillonellaceae.g__Dialister
## 2023-03-15 20:11:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Phycicoccus
## 2023-03-15 20:11:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Catenuloplanes
## 2023-03-15 20:11:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Crocosphaera
## 2023-03-15 20:11:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Halothece
## 2023-03-15 20:11:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Amoebophilaceae.g__Candidatus_Cardinium
## 2023-03-15 20:11:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Epulopiscium
## 2023-03-15 20:11:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Coxiellaceae.g__Diplorickettsia
## 2023-03-15 20:11:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Alcanivoracaceae.g__Alcanivorax
## 2023-03-15 20:11:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiales_Family_XVII._Incertae_Sedis.g__Thermaerobacter
## 2023-03-15 20:11:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Flammeovirga
## 2023-03-15 20:11:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Mycetocola
## 2023-03-15 20:11:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Sicinivirus
## 2023-03-15 20:11:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Segniliparaceae.g__Segniliparus
## 2023-03-15 20:11:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Moorella
## 2023-03-15 20:11:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Varicellovirus
## 2023-03-15 20:11:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Acidaminococcales.f__Acidaminococcaceae.g__Phascolarctobacterium
## 2023-03-15 20:11:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Citricoccus
## 2023-03-15 20:11:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Phycodnaviridae.g__Prymnesiovirus
## 2023-03-15 20:11:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Thalassospira
## 2023-03-15 20:11:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Arsukibacterium
## 2023-03-15 20:11:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Geodermatophilales.f__Geodermatophilaceae.g__Blastococcus
## 2023-03-15 20:11:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Terrimonas
## 2023-03-15 20:11:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Leuconostocaceae.g__Fructobacillus
## 2023-03-15 20:11:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Retroviridae.g__Alpharetrovirus
## 2023-03-15 20:11:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Saccharicrinis
## 2023-03-15 20:11:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Thermovirga
## 2023-03-15 20:11:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Nonomuraea
## 2023-03-15 20:11:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Stomatobaculum
## 2023-03-15 20:11:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Pseudacidovorax
## 2023-03-15 20:11:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Sodalis
## 2023-03-15 20:11:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Hyphomicrobium
## 2023-03-15 20:11:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Erythrobacteraceae.g__Porphyrobacter
## 2023-03-15 20:11:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Caldimonas
## 2023-03-15 20:11:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Acidobacteria.g__Thermoanaerobaculum
## 2023-03-15 20:11:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Acetobacter
## 2023-03-15 20:11:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Thermales.f__Thermaceae.g__Meiothermus
## 2023-03-15 20:11:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Veillonellales.f__Veillonellaceae.g__Veillonella
## 2023-03-15 20:11:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Schlesneria
## 2023-03-15 20:11:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Alicyclobacillaceae.g__Kyrpidia
## 2023-03-15 20:11:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Tymovirales.f__Tymoviridae.g__Tymovirus
## 2023-03-15 20:11:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Nepovirus
## 2023-03-15 20:11:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Brachyspirales.f__Brachyspiraceae.g__Brachyspira
## 2023-03-15 20:11:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Rhadinovirus
## 2023-03-15 20:11:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiales_Family_XIII._Incertae_Sedis.g__Casaltella
## 2023-03-15 20:12:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Tyzzerella
## 2023-03-15 20:12:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Achromobacter
## 2023-03-15 20:12:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Azohydromonas
## 2023-03-15 20:12:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Nesterenkonia
## 2023-03-15 20:12:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Parvimonas
## 2023-03-15 20:12:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Caldalkalibacillus
## 2023-03-15 20:12:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Rahnella
## 2023-03-15 20:12:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Alicycliphilus
## 2023-03-15 20:12:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prolixibacteraceae.g__Draconibacterium
## 2023-03-15 20:12:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Midichloriaceae.g__Candidatus_Midichloria
## 2023-03-15 20:12:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Propionicicella
## 2023-03-15 20:12:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Rivulariaceae.g__Calothrix
## 2023-03-15 20:12:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Aminobacter
## 2023-03-15 20:12:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Nitriliruptoria.o__Nitriliruptorales.f__Nitriliruptoraceae.g__Nitriliruptor
## 2023-03-15 20:12:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Pseudonocardia
## 2023-03-15 20:12:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Pilimelia
## 2023-03-15 20:12:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Verrucomicrobia.c__Spartobacteria.o__Chthoniobacterales.f__Chthoniobacteraceae.g__Chthoniobacter
## 2023-03-15 20:12:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylotenera
## 2023-03-15 20:12:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Finegoldia
## 2023-03-15 20:12:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Sulfurimonas
## 2023-03-15 20:12:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zobellia
## 2023-03-15 20:12:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Rhodomicrobium
## 2023-03-15 20:12:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Gloeocapsa
## 2023-03-15 20:12:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Acidihalobacter
## 2023-03-15 20:12:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Mycobacteriaceae.g__Amycolicicoccus
## 2023-03-15 20:12:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.g__Exiguobacterium
## 2023-03-15 20:12:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Serinicoccus
## 2023-03-15 20:12:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Candidatus_Brocadiales.f__Candidatus_Brocadiaceae.g__Candidatus_Brocadia
## 2023-03-15 20:12:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Actinoplanes
## 2023-03-15 20:12:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Halalkalibacillus
## 2023-03-15 20:12:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfonatronaceae.g__Desulfonatronum
## 2023-03-15 20:12:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Nodularia
## 2023-03-15 20:12:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__T7likevirus
## 2023-03-15 20:12:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomicrobium
## 2023-03-15 20:12:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Flavonifractor
## 2023-03-15 20:12:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Actibacterium
## 2023-03-15 20:12:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Niveispirillum
## 2023-03-15 20:12:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Frigoribacterium
## 2023-03-15 20:12:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Oscillatoria
## 2023-03-15 20:12:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Staphylococcaceae.g__Salinicoccus
## 2023-03-15 20:12:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Mardivirus
## 2023-03-15 20:12:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Sutterellaceae.g__Sutterella
## 2023-03-15 20:12:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Loktanella
## 2023-03-15 20:12:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Brachymonas
## 2023-03-15 20:12:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Anaerotruncus
## 2023-03-15 20:12:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Spo1virus
## 2023-03-15 20:12:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Rhodoferax
## 2023-03-15 20:12:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Ruaniaceae.g__Ruania
## 2023-03-15 20:12:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Syntrophomonadaceae.g__Syntrophomonas
## 2023-03-15 20:12:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Paeniclostridium
## 2023-03-15 20:12:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Klebsiella
## 2023-03-15 20:12:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Ktedonobacteria.o__Ktedonobacterales.f__Ktedonobacteraceae.g__Ktedonobacter
## 2023-03-15 20:12:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Mesoflavibacter
## 2023-03-15 20:12:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Labilitrichaceae.g__Labilithrix
## 2023-03-15 20:12:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Entomoplasmatales.f__Entomoplasmataceae.g__Mesoplasma
## 2023-03-15 20:12:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Ehrlichia
## 2023-03-15 20:12:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Astroviridae.g__Mamastrovirus
## 2023-03-15 20:12:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Nitratireductor
## 2023-03-15 20:12:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Chloroflexia.o__Chloroflexales.f__Chloroflexaceae.g__Chloroflexus
## 2023-03-15 20:12:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natronococcus
## 2023-03-15 20:12:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Polyomaviridae.g__Polyomavirus
## 2023-03-15 20:12:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Baculoviridae.g__Betabaculovirus
## 2023-03-15 20:12:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Halieaceae.g__Halioglobus
## 2023-03-15 20:12:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Pararhodospirillum
## 2023-03-15 20:12:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Rivulariaceae.g__Rivularia
## 2023-03-15 20:12:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Demequinaceae.g__Lysinimicrobium
## 2023-03-15 20:12:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Providencia
## 2023-03-15 20:12:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillales_Family_X._Incertae_Sedis.g__Thermicanus
## 2023-03-15 20:12:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Aquitalea
## 2023-03-15 20:12:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Sporosarcina
## 2023-03-15 20:12:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Gluconobacter
## 2023-03-15 20:12:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Fusobacteriaceae.g__Fusobacterium
## 2023-03-15 20:12:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Acidimicrobium
## 2023-03-15 20:12:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Dysgonomonas
## 2023-03-15 20:12:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Hydrogenobaculum
## 2023-03-15 20:12:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Euryhalocaulis
## 2023-03-15 20:12:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Bunyaviridae.g__Tospovirus
## 2023-03-15 20:12:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Azorhizobium
## 2023-03-15 20:12:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Saprospira
## 2023-03-15 20:12:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Luteimonas
## 2023-03-15 20:12:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Kordia
## 2023-03-15 20:12:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhizobiaceae.g__Kaistia
## 2023-03-15 20:12:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Moraxellaceae.g__Alkanindiges
## 2023-03-15 20:12:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Blautia
## 2023-03-15 20:12:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Gelidibacter
## 2023-03-15 20:12:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Aliivibrio
## 2023-03-15 20:12:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Thaumarchaeota.c__Nitrososphaeria.o__Nitrososphaerales.f__Nitrososphaeraceae.g__Candidatus_Nitrosocosmicus
## 2023-03-15 20:12:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiales_Family_XVII._Incertae_Sedis.g__Sulfobacillus
## 2023-03-15 20:12:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfobacter
## 2023-03-15 20:12:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Moritellaceae.g__Moritella
## 2023-03-15 20:12:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Moraxellaceae.g__Perlucidibaca
## 2023-03-15 20:12:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Sanguibacteraceae.g__Sanguibacter
## 2023-03-15 20:12:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Pseudomonadaceae.g__Azotobacter
## 2023-03-15 20:12:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanomicrobium
## 2023-03-15 20:12:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Morococcus
## 2023-03-15 20:12:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Acetobacterium
## 2023-03-15 20:12:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Bdellovibrionales.f__Bdellovibrionaceae.g__Bdellovibrio
## 2023-03-15 20:12:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prevotellaceae.g__Prevotella
## 2023-03-15 20:12:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Geminicoccus
## 2023-03-15 20:12:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Maribacter
## 2023-03-15 20:12:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Moorea
## 2023-03-15 20:12:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Moraxellaceae.g__Moraxella
## 2023-03-15 20:12:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Thermoleophilia.o__Solirubrobacterales.f__Conexibacteraceae.g__Conexibacter
## 2023-03-15 20:12:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfovermiculus
## 2023-03-15 20:12:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Halobacillus
## 2023-03-15 20:12:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Salinibacterium
## 2023-03-15 20:12:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Marinobacter
## 2023-03-15 20:12:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Virgaviridae.g__Tobamovirus
## 2023-03-15 20:12:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natrialba
## 2023-03-15 20:12:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Dactylosporangium
## 2023-03-15 20:12:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Hypoviridae.g__Hypovirus
## 2023-03-15 20:12:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Leclercia
## 2023-03-15 20:12:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Blattabacteriaceae.g__Blattabacterium
## 2023-03-15 20:12:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Oceanobacillus
## 2023-03-15 20:12:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Sporomusaceae.g__Thermosinus
## 2023-03-15 20:12:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Anoxybacillus
## 2023-03-15 20:12:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Acidobacteria.c__Holophagae.o__Holophagales.f__Holophagaceae.g__Geothrix
## 2023-03-15 20:12:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Dehalobacter
## 2023-03-15 20:12:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Rathayibacter
## 2023-03-15 20:12:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Planktothricoides
## 2023-03-15 20:12:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Gemmatimonadetes.c__Gemmatimonadetes.o__Gemmatimonadales.f__Gemmatimonadaceae.g__Gemmatimonas
## 2023-03-15 20:12:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Acidobacteria.c__Blastocatellia.g__Pyrinomonas
## 2023-03-15 20:12:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Alloactinosynnema
## 2023-03-15 20:12:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Lelliottia
## 2023-03-15 20:12:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiales_Family_XIII._Incertae_Sedis.g__Mogibacterium
## 2023-03-15 20:12:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Lamprocystis
## 2023-03-15 20:12:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Levyella
## 2023-03-15 20:12:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Butyricicoccus
## 2023-03-15 20:12:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Cystobacteraceae.g__Cystobacter
## 2023-03-15 20:12:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Catonella
## 2023-03-15 20:12:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Coleofasciculus
## 2023-03-15 20:12:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Williamsiaceae.g__Williamsia
maaslin_PC_group_likely <- function_Maaslin2(df_ACC_filter_Plate_Center_Voom_SNM, "Likely_combined", "Temp/PC_group_likely")
## [1] "Warning: Deleting existing log file: Temp/PC_group_likely/maaslin2.log"
## 2023-03-15 20:12:13 INFO::Writing function arguments to log file
## 2023-03-15 20:12:13 INFO::Verifying options selected are valid
## 2023-03-15 20:12:13 INFO::Determining format of input files
## 2023-03-15 20:12:13 INFO::Input format is data samples as rows and metadata samples as rows
## 2023-03-15 20:12:13 INFO::Formula for random effects: expr ~ (1 | SEX) + (1 | Ethnicity_Race) + (1 | AGE) + (1 | Neoplasm_Status) + (1 | Clinical_Status_3_Mo_Post.Op) + (1 | Surgical_margin) + (1 | ATYPICAL_MITOTIC_FIGURES)
## 2023-03-15 20:12:13 INFO::Formula for fixed effects: expr ~  Likely_combined
## 2023-03-15 20:12:13 INFO::Filter data based on min abundance and min prevalence
## 2023-03-15 20:12:13 INFO::Total samples in data: 77
## 2023-03-15 20:12:13 INFO::Min samples required with min abundance for a feature not to be filtered: 0.000000
## 2023-03-15 20:12:13 INFO::Total filtered features: 9
## 2023-03-15 20:12:13 INFO::Filtered feature names from abundance and prevalence filtering: k__Viruses.f__Chrysoviridae.g__Chrysovirus, k__Viruses.f__Hytrosaviridae.g__Muscavirus, k__Viruses.f__Closteroviridae.g__Crinivirus, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Nitrococcus, k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halomicrobium, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Azovibrio, k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Psychrobacillus, k__Bacteria.p__Thermotogae.c__Thermotogae.o__Petrotogales.g__Petrotoga, k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Aphanocapsa
## 2023-03-15 20:12:13 INFO::Total filtered features with variance filtering: 0
## 2023-03-15 20:12:13 INFO::Filtered feature names from variance filtering:
## 2023-03-15 20:12:13 INFO::Running selected normalization method: NONE
## 2023-03-15 20:12:13 INFO::Applying z-score to standardize continuous metadata
## 2023-03-15 20:12:13 INFO::Running selected transform method: NONE
## 2023-03-15 20:12:13 INFO::Running selected analysis method: LM
## 2023-03-15 20:12:13 INFO::Creating cluster of 6 R processes
## 2023-03-15 20:12:35 INFO::Counting total values for each feature
## 2023-03-15 20:12:35 WARNING::Deleting existing residuals file: Temp/PC_group_likely/residuals.rds
## 2023-03-15 20:12:35 INFO::Writing residuals to file Temp/PC_group_likely/residuals.rds
## 2023-03-15 20:12:35 WARNING::Deleting existing fitted file: Temp/PC_group_likely/fitted.rds
## 2023-03-15 20:12:35 INFO::Writing fitted values to file Temp/PC_group_likely/fitted.rds
## 2023-03-15 20:12:35 WARNING::Deleting existing ranef file: Temp/PC_group_likely/ranef.rds
## 2023-03-15 20:12:35 INFO::Writing extracted random effects to file Temp/PC_group_likely/ranef.rds
## 2023-03-15 20:12:35 INFO::Writing all results to file (ordered by increasing q-values): Temp/PC_group_likely/all_results.tsv
## 2023-03-15 20:12:35 INFO::Writing the significant results (those which are less than or equal to the threshold of 0.250000 ) to file (ordered by increasing q-values): Temp/PC_group_likely/significant_results.tsv
## 2023-03-15 20:12:35 INFO::Writing heatmap of significant results to file: Temp/PC_group_likely/heatmap.pdf
## Warning in xtfrm.data.frame(x): cannot xtfrm data frames
## [1] "There is not enough metadata in the associations to create a heatmap plot. Please review the associations in text output file."
## 2023-03-15 20:12:35 INFO::Writing association plots (one for each significant association) to output folder: Temp/PC_group_likely
## 2023-03-15 20:12:35 INFO::Plotting associations from most to least significant, grouped by metadata
## 2023-03-15 20:12:35 INFO::Plotting data for metadata number 1, Likely_combined
## 2023-03-15 20:12:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Arhodomonas
## 2023-03-15 20:12:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Poxviridae.g__Parapoxvirus
## 2023-03-15 20:12:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Bicaudaviridae.g__Bicaudavirus
## 2023-03-15 20:12:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Circoviridae.g__Gyrovirus
## 2023-03-15 20:12:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Papillomaviridae.g__Betapapillomavirus
## 2023-03-15 20:12:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Bcep22likevirus
## 2023-03-15 20:12:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Poxviridae.g__Cervidpoxvirus
## 2023-03-15 20:12:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Lambdalikevirus
## 2023-03-15 20:12:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Anelloviridae.g__Alphatorquevirus
## 2023-03-15 20:12:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Barnyardlikevirus
## 2023-03-15 20:12:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Closteroviridae.g__Closterovirus
## 2023-03-15 20:12:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Fuselloviridae.g__Alphafusellovirus
## 2023-03-15 20:12:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Poxviridae.g__Avipoxvirus
## 2023-03-15 20:12:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Herpesvirales.f__Malacoherpesviridae.g__Ostreavirus
## 2023-03-15 20:12:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Tymovirales.f__Betaflexiviridae.g__Foveavirus
## 2023-03-15 20:12:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.g__Bacilladnavirus
## 2023-03-15 20:12:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Skunalikevirus
## 2023-03-15 20:12:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Cp220likevirus
## 2023-03-15 20:12:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Phikzlikevirus
## 2023-03-15 20:12:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Orthomyxoviridae.g__Influenzavirus_C
## 2023-03-15 20:12:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phi29likevirus
## 2023-03-15 20:12:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Caulimoviridae.g__Cavemovirus
## 2023-03-15 20:12:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Anelloviridae.g__Betatorquevirus
## 2023-03-15 20:12:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Caulimoviridae.g__Caulimovirus
## 2023-03-15 20:12:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Bromoviridae.g__Alfamovirus
## 2023-03-15 20:12:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Sp6likevirus
## 2023-03-15 20:12:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Tymovirales.f__Alphaflexiviridae.g__Allexivirus
## 2023-03-15 20:12:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Parvoviridae.g__Ambidensovirus
## 2023-03-15 20:12:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Comovirus
## 2023-03-15 20:12:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.g__Polemovirus
## 2023-03-15 20:12:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Bromoviridae.g__Ilarvirus
## 2023-03-15 20:12:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Narnaviridae.g__Narnavirus
## 2023-03-15 20:12:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Totiviridae.g__Totivirus
## 2023-03-15 20:12:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Potyviridae.g__Tritimovirus
## 2023-03-15 20:12:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Papillomaviridae.g__Dyopipapillomavirus
## 2023-03-15 20:12:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Siccibacter
## 2023-03-15 20:12:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Ponticaulis
## 2023-03-15 20:12:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Methanomassiliicoccales.f__Methanomassiliicoccaceae.g__Candidatus_Methanomethylophilus
## 2023-03-15 20:12:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Nitritalea
## 2023-03-15 20:12:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Mangrovibacter
## 2023-03-15 20:12:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Reinekea
## 2023-03-15 20:12:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfospira
## 2023-03-15 20:12:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Arenitalea
## 2023-03-15 20:12:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Thermoactinomycetaceae.g__Shimazuella
## 2023-03-15 20:12:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Basilea
## 2023-03-15 20:12:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Alicyclobacillaceae.g__Effusibacillus
## 2023-03-15 20:12:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitinibacter
## 2023-03-15 20:12:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Myxosarcina
## 2023-03-15 20:12:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomarinum
## 2023-03-15 20:12:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudophaeobacter
## 2023-03-15 20:12:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Jeotgalibacillus
## 2023-03-15 20:12:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Zymobacter
## 2023-03-15 20:12:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Paeniglutamicibacter
## 2023-03-15 20:12:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halobellus
## 2023-03-15 20:12:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Cyclobacterium
## 2023-03-15 20:12:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.g__Aciduliprofundum
## 2023-03-15 20:12:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Thioalkalimicrobium
## 2023-03-15 20:12:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Robiginitalea
## 2023-03-15 20:12:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Caldimicrobium
## 2023-03-15 20:12:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Actinopolymorpha
## 2023-03-15 20:12:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Candidatus_Phaeomarinobacter
## 2023-03-15 20:12:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Candidatus_Koribacter
## 2023-03-15 20:12:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Centipeda
## 2023-03-15 20:12:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Nautilia
## 2023-03-15 20:12:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Obesumbacterium
## 2023-03-15 20:12:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Alkalilimnicola
## 2023-03-15 20:12:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Aliiroseovarius
## 2023-03-15 20:12:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Stigonematales.g__Mastigocladopsis
## 2023-03-15 20:12:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Thaumarchaeota.o__Nitrosopumilales.f__Nitrosopumilaceae.g__Candidatus_Nitrosoarchaeum
## 2023-03-15 20:12:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Wolinella
## 2023-03-15 20:12:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Thaumarchaeota.o__Nitrosopumilales.f__Nitrosopumilaceae.g__Nitrosopumilus
## 2023-03-15 20:12:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Marinococcus
## 2023-03-15 20:12:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfobacula
## 2023-03-15 20:12:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Thermincola
## 2023-03-15 20:12:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Shuttleworthia
## 2023-03-15 20:12:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thalassobium
## 2023-03-15 20:12:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Mesonia
## 2023-03-15 20:12:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Basfia
## 2023-03-15 20:12:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Candidatus_Atelocyanobacterium
## 2023-03-15 20:12:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Coriobacterium
## 2023-03-15 20:12:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Marinagarivorans
## 2023-03-15 20:12:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Solitalea
## 2023-03-15 20:12:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Thermoplasmatales.f__Ferroplasmaceae.g__Ferroplasma
## 2023-03-15 20:12:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Bermanella
## 2023-03-15 20:12:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Rummeliibacillus
## 2023-03-15 20:12:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfurivibrio
## 2023-03-15 20:12:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Pseudobutyrivibrio
## 2023-03-15 20:12:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Kosmotogales.f__Kosmotogaceae.g__Mesotoga
## 2023-03-15 20:12:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Balneatrix
## 2023-03-15 20:12:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Sulfuricurvum
## 2023-03-15 20:12:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Dielma
## 2023-03-15 20:12:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Ardenticatenia.o__Ardenticatenales.f__Ardenticatenaceae.g__Ardenticatena
## 2023-03-15 20:12:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Halostagnicola
## 2023-03-15 20:12:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Legionellaceae.g__Tatlockia
## 2023-03-15 20:12:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Candidatus_Photodesmus
## 2023-03-15 20:12:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfonatronospira
## 2023-03-15 20:12:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Paucisalibacillus
## 2023-03-15 20:12:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Cloacibacillus
## 2023-03-15 20:12:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Thaumarchaeota.g__Candidatus_Nitrosotenuis
## 2023-03-15 20:12:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Subdoligranulum
## 2023-03-15 20:12:44 INFO::Creating boxplot for categorical data, Likely_combined vs contaminant1Harvard
## 2023-03-15 20:12:44 INFO::Creating boxplot for categorical data, Likely_combined vs contaminant2HarvardCanadaBaylorWashU
## 2023-03-15 20:12:44 INFO::Creating boxplot for categorical data, Likely_combined vs contaminant3AllSeqCenters
## 2023-03-15 20:12:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__T5likevirus
## 2023-03-15 20:12:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Natronomonas
## 2023-03-15 20:12:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__N4likevirus
## 2023-03-15 20:12:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Virgaviridae.g__Pecluvirus
## 2023-03-15 20:12:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Halolactibacillus
## 2023-03-15 20:12:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanoregulaceae.g__Methanosphaerula
## 2023-03-15 20:12:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Sellimonas
## 2023-03-15 20:12:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phikmvlikevirus
## 2023-03-15 20:12:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Mimiviridae.g__Mimivirus
## 2023-03-15 20:12:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Gramella
## 2023-03-15 20:12:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Microvirgula
## 2023-03-15 20:12:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__L5likevirus
## 2023-03-15 20:12:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Thermodesulfatator
## 2023-03-15 20:12:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Terasakiella
## 2023-03-15 20:12:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Salimicrobium
## 2023-03-15 20:12:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Acidobacteria.c__Solibacteres.o__Solibacterales.g__Bryobacter
## 2023-03-15 20:12:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylothermaceae.g__Methylohalobius
## 2023-03-15 20:12:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiocystis
## 2023-03-15 20:12:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Rudanella
## 2023-03-15 20:12:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Cryomorphaceae.g__Owenweeksia
## 2023-03-15 20:12:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Youngiibacter
## 2023-03-15 20:12:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Agarivorans
## 2023-03-15 20:12:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halanaeroarchaeum
## 2023-03-15 20:12:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Candidatus_Methylopumilus
## 2023-03-15 20:12:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Puniceibacterium
## 2023-03-15 20:12:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Nisaea
## 2023-03-15 20:12:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Coprobacter
## 2023-03-15 20:12:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Caliciviridae.g__Vesivirus
## 2023-03-15 20:12:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Fusobacteriaceae.g__Ilyobacter
## 2023-03-15 20:12:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Azonexus
## 2023-03-15 20:12:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Tolumonas
## 2023-03-15 20:12:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Leeia
## 2023-03-15 20:12:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Gynuella
## 2023-03-15 20:12:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Marinimicrobium
## 2023-03-15 20:12:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Dactylococcopsis
## 2023-03-15 20:12:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Desulfuromonadaceae.g__Desulfuromonas
## 2023-03-15 20:12:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pragia
## 2023-03-15 20:12:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Lymphocryptovirus
## 2023-03-15 20:12:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Pelodictyon
## 2023-03-15 20:12:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Chloroflexia.o__Chloroflexales.f__Oscillochloridaceae.g__Oscillochloris
## 2023-03-15 20:12:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halarchaeum
## 2023-03-15 20:12:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Glutamicibacter
## 2023-03-15 20:12:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.f__Competibacteraceae.g__Candidatus_Competibacter
## 2023-03-15 20:12:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Yokenella
## 2023-03-15 20:12:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halalkalicoccus
## 2023-03-15 20:12:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Jejuia
## 2023-03-15 20:12:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Paraoerskovia
## 2023-03-15 20:12:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Actinotignum
## 2023-03-15 20:12:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Thioploca
## 2023-03-15 20:12:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.o__Haloplasmatales.f__Haloplasmataceae.g__Haloplasma
## 2023-03-15 20:12:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatirhabdium
## 2023-03-15 20:12:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.g__Methyloceanibacter
## 2023-03-15 20:12:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Legionellaceae.g__Fluoribacter
## 2023-03-15 20:12:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Thaumarchaeota.c__Nitrososphaeria.o__Nitrososphaerales.f__Nitrososphaeraceae.g__Nitrososphaera
## 2023-03-15 20:12:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Pleurocapsa
## 2023-03-15 20:12:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Halotalea
## 2023-03-15 20:12:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Crocinitomicaceae.g__Crocinitomix
## 2023-03-15 20:12:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Lentibacillus
## 2023-03-15 20:12:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Sphingorhabdus
## 2023-03-15 20:12:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Ammonifex
## 2023-03-15 20:12:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Candidatus_Neoehrlichia
## 2023-03-15 20:12:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Acaricomes
## 2023-03-15 20:12:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Poxviridae.g__Alphaentomopoxvirus
## 2023-03-15 20:12:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Aeribacillus
## 2023-03-15 20:12:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Pseudaminobacter
## 2023-03-15 20:12:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Archaeoglobi.o__Archaeoglobales.f__Archaeoglobaceae.g__Geoglobus
## 2023-03-15 20:12:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Geovibrio
## 2023-03-15 20:12:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Hydrogenobacter
## 2023-03-15 20:12:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ketogulonicigenium
## 2023-03-15 20:12:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermodesulfobiaceae.g__Thermodesulfobium
## 2023-03-15 20:12:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Poxviridae.g__Yatapoxvirus
## 2023-03-15 20:12:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Methylocapsa
## 2023-03-15 20:12:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylococcus
## 2023-03-15 20:12:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Rhodothermaeota.c__Balneolia.o__Balneolales.f__Balneolaceae.g__Balneola
## 2023-03-15 20:12:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Aurantimonadaceae.g__Fulvimarina
## 2023-03-15 20:12:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Amphibacillus
## 2023-03-15 20:12:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Fusobacteriaceae.g__Cetobacterium
## 2023-03-15 20:12:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfotignum
## 2023-03-15 20:12:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Microchaetaceae.g__Microchaete
## 2023-03-15 20:12:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Hellea
## 2023-03-15 20:12:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Kandleria
## 2023-03-15 20:12:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiorhodococcus
## 2023-03-15 20:12:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Microcoleus
## 2023-03-15 20:12:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Campylobacteraceae.g__Sulfurospirillum
## 2023-03-15 20:12:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Cryocola
## 2023-03-15 20:12:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.o__Bacteroidetes_Order_II._Incertae_sedis.f__Rhodothermaceae.g__Salisaeta
## 2023-03-15 20:12:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Herbiconiux
## 2023-03-15 20:12:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Simiduia
## 2023-03-15 20:12:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Pyramidobacter
## 2023-03-15 20:12:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sedimentitalea
## 2023-03-15 20:12:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Riesia
## 2023-03-15 20:12:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Bdellovibrionales.f__Halobacteriovoraceae.g__Halobacteriovorax
## 2023-03-15 20:12:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Hepeviridae.g__Piscihepevirus
## 2023-03-15 20:12:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.o__Bacteroidetes_Order_II._Incertae_sedis.f__Rhodothermaceae.g__Salinibacter
## 2023-03-15 20:12:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Joostella
## 2023-03-15 20:12:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Aestuariivita
## 2023-03-15 20:12:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Franconibacter
## 2023-03-15 20:12:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Carnobacteriaceae.g__Jeotgalibaca
## 2023-03-15 20:12:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Shimwellia
## 2023-03-15 20:12:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Pseudohongiella
## 2023-03-15 20:12:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Nocardiopsaceae.g__Streptomonospora
## 2023-03-15 20:12:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Oleispira
## 2023-03-15 20:12:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Marinilabilia
## 2023-03-15 20:12:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oleiphilaceae.g__Oleiphilus
## 2023-03-15 20:12:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Alphacoronavirus
## 2023-03-15 20:12:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Thermosynechococcus
## 2023-03-15 20:12:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Spirochaetaceae.g__Salinispira
## 2023-03-15 20:12:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudorhodobacter
## 2023-03-15 20:12:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Mimiviridae.g__Cafeteriavirus
## 2023-03-15 20:12:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Coprococcus
## 2023-03-15 20:12:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Melissococcus
## 2023-03-15 20:12:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Beggiatoa
## 2023-03-15 20:12:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Thermopetrobacter
## 2023-03-15 20:12:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Carnobacteriaceae.g__Alloiococcus
## 2023-03-15 20:12:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Cyanobacterium
## 2023-03-15 20:12:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Arenaviridae.g__Arenavirus
## 2023-03-15 20:12:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinopolysporales.f__Actinopolysporaceae.g__Actinopolyspora
## 2023-03-15 20:12:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prevotellaceae.g__Hallella
## 2023-03-15 20:12:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Isosphaeraceae.g__Isosphaera
## 2023-03-15 20:12:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Moranella
## 2023-03-15 20:12:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Tunalikevirus
## 2023-03-15 20:12:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Tistrella
## 2023-03-15 20:12:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.g__Candidatus_Babela
## 2023-03-15 20:12:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Opitutales.f__Opitutaceae.g__Cephaloticoccus
## 2023-03-15 20:12:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Spirochaetaceae.g__Treponema
## 2023-03-15 20:12:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Kordiimonadales.f__Kordiimonadaceae.g__Kordiimonas
## 2023-03-15 20:12:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Salegentibacter
## 2023-03-15 20:12:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Circoviridae.g__Circovirus
## 2023-03-15 20:12:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Synergistes
## 2023-03-15 20:12:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thalassobacter
## 2023-03-15 20:12:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Sandarakinorhabdus
## 2023-03-15 20:12:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Silanimonas
## 2023-03-15 20:12:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Lactobacillaceae.g__Sharpea
## 2023-03-15 20:12:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Vitreoscilla
## 2023-03-15 20:12:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Promicromonospora
## 2023-03-15 20:12:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Wenxinia
## 2023-03-15 20:12:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Halieaceae.g__Congregibacter
## 2023-03-15 20:12:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Betacoronavirus
## 2023-03-15 20:12:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitiniphilus
## 2023-03-15 20:12:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Diaphorobacter
## 2023-03-15 20:12:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Virgibacillus
## 2023-03-15 20:12:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Sporomusaceae.g__Pelosinus
## 2023-03-15 20:12:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Flexilinea
## 2023-03-15 20:12:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfonatronovibrio
## 2023-03-15 20:12:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Wolbachia
## 2023-03-15 20:12:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Thermales.f__Thermaceae.g__Oceanithermus
## 2023-03-15 20:12:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Mannheimia
## 2023-03-15 20:12:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Stanieria
## 2023-03-15 20:12:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Salinimicrobium
## 2023-03-15 20:13:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Stappia
## 2023-03-15 20:13:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Starkeya
## 2023-03-15 20:13:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Dicistroviridae.g__Cripavirus
## 2023-03-15 20:13:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Halobacteroides
## 2023-03-15 20:13:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Ishikawaella
## 2023-03-15 20:13:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Acidobacteria.c__Solibacteres.o__Solibacterales.f__Solibacteraceae.g__Candidatus_Solibacter
## 2023-03-15 20:13:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Lunatimonas
## 2023-03-15 20:13:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Acidobacterium
## 2023-03-15 20:13:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Confluentimicrobium
## 2023-03-15 20:13:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Thalassobaculum
## 2023-03-15 20:13:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Alkaliphilus
## 2023-03-15 20:13:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Acidocella
## 2023-03-15 20:13:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Limnochordia.o__Limnochordales.f__Limnochordaceae.g__Limnochorda
## 2023-03-15 20:13:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Hydrogenophilales.f__Hydrogenophilaceae.g__Thiobacillus
## 2023-03-15 20:13:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Gallionella
## 2023-03-15 20:13:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Thiolapillus
## 2023-03-15 20:13:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Caulobacterales.f__Caulobacteraceae.g__Woodsholea
## 2023-03-15 20:13:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Kushneria
## 2023-03-15 20:13:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.f__Leptospiraceae.g__Leptonema
## 2023-03-15 20:13:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Baculoviridae.g__Deltabaculovirus
## 2023-03-15 20:13:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Bifidobacteriales.f__Bifidobacteriaceae.g__Alloscardovia
## 2023-03-15 20:13:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Halorhodospira
## 2023-03-15 20:13:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Gemmobacter
## 2023-03-15 20:13:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Caminibacter
## 2023-03-15 20:13:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Yaniella
## 2023-03-15 20:13:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinosynnema
## 2023-03-15 20:13:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Prochlorales.f__Prochlorotrichaceae.g__Prochlorothrix
## 2023-03-15 20:13:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Anaerostipes
## 2023-03-15 20:13:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Hahellaceae.g__Zooshikella
## 2023-03-15 20:13:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Thermomonosporaceae.g__Spirillospora
## 2023-03-15 20:13:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_III._Incertae_Sedis.g__Thermosediminibacter
## 2023-03-15 20:13:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylobacillus
## 2023-03-15 20:13:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Marvinbryantia
## 2023-03-15 20:13:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Xanthobacter
## 2023-03-15 20:13:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Propionicicella
## 2023-03-15 20:13:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Akkermansiaceae.g__Akkermansia
## 2023-03-15 20:13:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Kribbella
## 2023-03-15 20:13:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Mucispirillum
## 2023-03-15 20:13:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Asaia
## 2023-03-15 20:13:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Fibrobacteres.c__Chitinispirillia.o__Chitinispirillales.f__Chitinispirillaceae.g__Chitinispirillum
## 2023-03-15 20:13:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.c__Spartobacteria.g__Terrimicrobium
## 2023-03-15 20:13:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Dongia
## 2023-03-15 20:13:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Stigonematales.g__Hapalosiphon
## 2023-03-15 20:13:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Rhizobacter
## 2023-03-15 20:13:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Enterorhabdus
## 2023-03-15 20:13:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bradyrhizobiaceae.g__Oligotropha
## 2023-03-15 20:13:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Chelativorans
## 2023-03-15 20:13:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Gallaecimonas
## 2023-03-15 20:13:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Propionispira
## 2023-03-15 20:13:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Enorma
## 2023-03-15 20:13:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.c__Spartobacteria.o__Chthoniobacterales.f__Chthoniobacteraceae.g__Chthoniobacter
## 2023-03-15 20:13:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfarculales.f__Desulfarculaceae.g__Desulfarculus
## 2023-03-15 20:13:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Leucothrix
## 2023-03-15 20:13:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Hahellaceae.g__Hahella
## 2023-03-15 20:13:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Steroidobacter
## 2023-03-15 20:13:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Anaerofustis
## 2023-03-15 20:13:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Rouxiella
## 2023-03-15 20:13:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Verrucosispora
## 2023-03-15 20:13:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Lentisphaerae.c__Lentisphaeria.o__Lentisphaerales.f__Lentisphaeraceae.g__Lentisphaera
## 2023-03-15 20:13:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Fibrobacteres.c__Fibrobacteria.o__Fibrobacterales.f__Fibrobacteraceae.g__Fibrobacter
## 2023-03-15 20:13:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Polydnaviridae.g__Ichnovirus
## 2023-03-15 20:13:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Kibdelosporangium
## 2023-03-15 20:13:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Raphidiopsis
## 2023-03-15 20:13:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Cedecea
## 2023-03-15 20:13:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Leptotrichiaceae.g__Streptobacillus
## 2023-03-15 20:13:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Chitinophaga
## 2023-03-15 20:13:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Crenobacter
## 2023-03-15 20:13:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Microbulbiferaceae.g__Microbulbifer
## 2023-03-15 20:13:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanobacteriaceae.g__Methanosphaera
## 2023-03-15 20:13:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Nesiotobacter
## 2023-03-15 20:13:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Chitinimonas
## 2023-03-15 20:13:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Dinoroseobacter
## 2023-03-15 20:13:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Glycomycetales.f__Glycomycetaceae.g__Haloglycomyces
## 2023-03-15 20:13:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Candidatus_Desulforudis
## 2023-03-15 20:13:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Geofilum
## 2023-03-15 20:13:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Pelagibacterium
## 2023-03-15 20:13:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Candidatus_Stoquefichus
## 2023-03-15 20:13:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Pseudolabrys
## 2023-03-15 20:13:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Oceanibulbus
## 2023-03-15 20:13:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Virgaviridae.g__Pomovirus
## 2023-03-15 20:13:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Histophilus
## 2023-03-15 20:13:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prevotellaceae.g__Prevotella
## 2023-03-15 20:13:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.g__Nitratifractor
## 2023-03-15 20:13:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Flexithrix
## 2023-03-15 20:13:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Capnocytophaga
## 2023-03-15 20:13:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Maribacter
## 2023-03-15 20:13:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Alcanivoracaceae.g__Alcanivorax
## 2023-03-15 20:13:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Salinarchaeum
## 2023-03-15 20:13:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Vitellibacter
## 2023-03-15 20:13:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Paludibacterium
## 2023-03-15 20:13:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Carboxydothermus
## 2023-03-15 20:13:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Granulicella
## 2023-03-15 20:13:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Nitrosococcus
## 2023-03-15 20:13:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zhouia
## 2023-03-15 20:13:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiocapsa
## 2023-03-15 20:13:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Teredinibacter
## 2023-03-15 20:13:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Blastomonas
## 2023-03-15 20:13:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Microthrixaceae.g__Candidatus_Microthrix
## 2023-03-15 20:13:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Gulosibacter
## 2023-03-15 20:13:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Catenuloplanes
## 2023-03-15 20:13:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Anaerovibrio
## 2023-03-15 20:13:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Dokdonella
## 2023-03-15 20:13:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Thaumarchaeota.g__Candidatus_Nitrosopelagicus
## 2023-03-15 20:13:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Zymomonas
## 2023-03-15 20:13:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Polycyclovorans
## 2023-03-15 20:13:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Dermatophilus
## 2023-03-15 20:13:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Rubritepida
## 2023-03-15 20:13:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Fabavirus
## 2023-03-15 20:13:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sulfitobacter
## 2023-03-15 20:13:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Thermoplasmatales.f__Picrophilaceae.g__Picrophilus
## 2023-03-15 20:13:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Peptostreptococcus
## 2023-03-15 20:13:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bradyrhizobiaceae.g__Tardiphaga
## 2023-03-15 20:13:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Nodosilinea
## 2023-03-15 20:13:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.g__Thermorudis
## 2023-03-15 20:13:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobiaceae.g__Haloferula
## 2023-03-15 20:13:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Faecalicoccus
## 2023-03-15 20:13:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Lyngbya
## 2023-03-15 20:13:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methermicoccaceae.g__Methermicoccus
## 2023-03-15 20:13:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseivivax
## 2023-03-15 20:13:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cardiobacteriales.f__Cardiobacteriaceae.g__Dichelobacter
## 2023-03-15 20:13:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Bhargavaea
## 2023-03-15 20:13:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatiglans
## 2023-03-15 20:13:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Isosphaeraceae.g__Singulisphaera
## 2023-03-15 20:13:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Nonlabens
## 2023-03-15 20:13:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Gemmata
## 2023-03-15 20:13:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Desulfurococcaceae.g__Ignicoccus
## 2023-03-15 20:13:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Catelliglobosispora
## 2023-03-15 20:13:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Lewinella
## 2023-03-15 20:13:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.g__Candidatus_Azobacteroides
## 2023-03-15 20:13:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Agreia
## 2023-03-15 20:13:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Litoreibacter
## 2023-03-15 20:13:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Gimesia
## 2023-03-15 20:13:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Paenirhodobacter
## 2023-03-15 20:13:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Leptotrichiaceae.g__Sebaldella
## 2023-03-15 20:13:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Geobacteraceae.g__Geoalkalibacter
## 2023-03-15 20:13:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Parvibaculum
## 2023-03-15 20:13:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Micavibrio
## 2023-03-15 20:13:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Kineosporiales.f__Kineosporiaceae.g__Kineosporia
## 2023-03-15 20:13:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Gemmatimonadetes.c__Gemmatimonadetes.o__Gemmatimonadales.f__Gemmatimonadaceae.g__Gemmatirosa
## 2023-03-15 20:13:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thioflavicoccus
## 2023-03-15 20:13:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.g__Timonella
## 2023-03-15 20:13:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Isoptericola
## 2023-03-15 20:13:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Hydrogenovibrio
## 2023-03-15 20:13:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Sediminibacter
## 2023-03-15 20:13:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Borreliaceae.g__Borrelia
## 2023-03-15 20:13:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Ornatilinea
## 2023-03-15 20:13:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Kineosporiales.f__Kineosporiaceae.g__Kineococcus
## 2023-03-15 20:13:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Derxia
## 2023-03-15 20:13:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Riemerella
## 2023-03-15 20:13:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylobacteriaceae.g__Microvirga
## 2023-03-15 20:13:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Adenoviridae.g__Aviadenovirus
## 2023-03-15 20:13:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Johnsonella
## 2023-03-15 20:13:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Thermanaerovibrio
## 2023-03-15 20:13:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Catabacteriaceae.g__Catabacter
## 2023-03-15 20:13:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Ferrimicrobium
## 2023-03-15 20:13:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Echinicola
## 2023-03-15 20:13:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Magnetococcales.f__Magnetococcaceae.g__Magnetococcus
## 2023-03-15 20:13:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Neptunomonas
## 2023-03-15 20:13:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Spounalikevirus
## 2023-03-15 20:13:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Thermococcus
## 2023-03-15 20:13:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Schlesneria
## 2023-03-15 20:13:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Sanguibacteroides
## 2023-03-15 20:13:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Tetrasphaera
## 2023-03-15 20:13:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Olleya
## 2023-03-15 20:13:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Kluyvera
## 2023-03-15 20:13:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Cytophaga
## 2023-03-15 20:13:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Pseudoalteromonadaceae.g__Pseudoalteromonas
## 2023-03-15 20:13:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Spiribacter
## 2023-03-15 20:13:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Saccharibacillus
## 2023-03-15 20:13:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sneathiellales.f__Sneathiellaceae.g__Sneathiella
## 2023-03-15 20:13:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Pilimelia
## 2023-03-15 20:13:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Oceanibaculum
## 2023-03-15 20:13:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Terrimonas
## 2023-03-15 20:13:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Rubinisphaera
## 2023-03-15 20:13:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Regiella
## 2023-03-15 20:13:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Arenimonas
## 2023-03-15 20:13:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Haliscomenobacter
## 2023-03-15 20:13:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Terrabacter
## 2023-03-15 20:13:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Sciscionella
## 2023-03-15 20:13:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Nitrospirae.c__Nitrospira.o__Nitrospirales.f__Nitrospiraceae.g__Candidatus_Magnetobacterium
## 2023-03-15 20:13:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Saccharibacter
## 2023-03-15 20:13:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Dechloromonas
## 2023-03-15 20:13:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Bdellovibrionales.f__Bacteriovoracaceae.g__Bacteriovorax
## 2023-03-15 20:13:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Eggerthella
## 2023-03-15 20:13:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Caenimonas
## 2023-03-15 20:13:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Alkaliflexus
## 2023-03-15 20:13:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Viridibacillus
## 2023-03-15 20:13:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Simplexvirus
## 2023-03-15 20:13:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Ktedonobacteria.o__Ktedonobacterales.f__Ktedonobacteraceae.g__Ktedonobacter
## 2023-03-15 20:13:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Adenoviridae.g__Mastadenovirus
## 2023-03-15 20:13:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Enteractinococcus
## 2023-03-15 20:13:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Hytrosaviridae.g__Glossinavirus
## 2023-03-15 20:13:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Sporolactobacillaceae.g__Tuberibacillus
## 2023-03-15 20:13:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Silvibacterium
## 2023-03-15 20:13:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Parvimonas
## 2023-03-15 20:13:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halapricum
## 2023-03-15 20:13:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Flavisolibacter
## 2023-03-15 20:13:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Phycodnaviridae.g__Prymnesiovirus
## 2023-03-15 20:13:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Flavihumibacter
## 2023-03-15 20:13:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Cyanothece
## 2023-03-15 20:13:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Senegalimassilia
## 2023-03-15 20:13:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Weeksella
## 2023-03-15 20:13:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Clostridium
## 2023-03-15 20:13:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Marinobacter
## 2023-03-15 20:13:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Mucilaginibacter
## 2023-03-15 20:13:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Maribius
## 2023-03-15 20:13:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Ornithobacterium
## 2023-03-15 20:13:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Terracoccus
## 2023-03-15 20:13:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Kiloniellales.f__Kiloniellaceae.g__Kiloniella
## 2023-03-15 20:13:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Caulobacterales.f__Caulobacteraceae.g__Phenylobacterium
## 2023-03-15 20:13:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhizobiaceae.g__Neorhizobium
## 2023-03-15 20:13:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Hepatovirus
## 2023-03-15 20:13:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.g__Emaravirus
## 2023-03-15 20:13:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.o__Methylacidiphilales.f__Methylacidiphilaceae.g__Methylacidiphilum
## 2023-03-15 20:13:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Spirosoma
## 2023-03-15 20:13:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Porticoccaceae.g__Porticoccus
## 2023-03-15 20:13:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Commensalibacter
## 2023-03-15 20:13:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Levyella
## 2023-03-15 20:13:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Aeromonas
## 2023-03-15 20:13:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Schleiferiaceae.g__Schleiferia
## 2023-03-15 20:13:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Luteibacter
## 2023-03-15 20:13:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Proteus
## 2023-03-15 20:13:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Xenococcus
## 2023-03-15 20:13:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Poxviridae.g__Capripoxvirus
## 2023-03-15 20:13:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Citromicrobium
## 2023-03-15 20:13:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Magnetospira
## 2023-03-15 20:13:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylosarcina
## 2023-03-15 20:13:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Rubrobacteria.o__Rubrobacterales.f__Rubrobacteraceae.g__Rubrobacter
## 2023-03-15 20:13:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Lebetimonas
## 2023-03-15 20:13:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylobacteriaceae.g__Meganema
## 2023-03-15 20:13:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Cylindrospermum
## 2023-03-15 20:13:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Polynucleobacter
## 2023-03-15 20:13:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Eikenella
## 2023-03-15 20:13:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Thermosulfurimonas
## 2023-03-15 20:13:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Haematospirillum
## 2023-03-15 20:13:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinomycetospora
## 2023-03-15 20:13:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.g__Acidibacillus
## 2023-03-15 20:13:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Gloeocapsa
## 2023-03-15 20:13:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Nakamurellales.f__Nakamurellaceae.g__Nakamurella
## 2023-03-15 20:13:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Kinetoplastibacterium
## 2023-03-15 20:13:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Frankiales.f__Sporichthyaceae.g__Sporichthya
## 2023-03-15 20:13:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Thermoactinomycetaceae.g__Thermoactinomyces
## 2023-03-15 20:13:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Rhodoplanes
## 2023-03-15 20:13:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Pseudomonadaceae.g__Oblitimonas
## 2023-03-15 20:13:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bartonellaceae.g__Bartonella
## 2023-03-15 20:13:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Symbiobacteriaceae.g__Symbiobacterium
## 2023-03-15 20:13:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Lacinutrix
## 2023-03-15 20:13:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfomicrobiaceae.g__Desulfomicrobium
## 2023-03-15 20:13:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylobacter
## 2023-03-15 20:13:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Vibrio
## 2023-03-15 20:13:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Anaplasma
## 2023-03-15 20:13:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Microtetraspora
## 2023-03-15 20:13:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Hydrogenivirga
## 2023-03-15 20:13:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Waikavirus
## 2023-03-15 20:13:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Rhodopirellula
## 2023-03-15 20:13:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Veillonellales.f__Veillonellaceae.g__Megasphaera
## 2023-03-15 20:13:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Gracilibacillus
## 2023-03-15 20:13:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Herpesvirales.f__Alloherpesviridae.g__Batrachovirus
## 2023-03-15 20:13:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Thermobrachium
## 2023-03-15 20:13:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Kosakonia
## 2023-03-15 20:13:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Pseudacidovorax
## 2023-03-15 20:13:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Thiorhodospira
## 2023-03-15 20:13:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Senecavirus
## 2023-03-15 20:13:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Polyangiaceae.g__Sorangium
## 2023-03-15 20:13:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinokineospora
## 2023-03-15 20:13:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Acetohalobium
## 2023-03-15 20:13:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Advenella
## 2023-03-15 20:13:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Blochmannia
## 2023-03-15 20:13:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thioclava
## 2023-03-15 20:13:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Varicellovirus
## 2023-03-15 20:13:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Pleomorphomonas
## 2023-03-15 20:13:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Hamadaea
## 2023-03-15 20:13:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Helcococcus
## 2023-03-15 20:13:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Colwellia
## 2023-03-15 20:13:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Polyangiaceae.g__Chondromyces
## 2023-03-15 20:13:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Marivirga
## 2023-03-15 20:13:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanococci.o__Methanococcales.f__Methanococcaceae.g__Methanothermococcus
## 2023-03-15 20:13:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Catenulisporales.f__Actinospicaceae.g__Actinospica
## 2023-03-15 20:13:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Anaeromyxobacteraceae.g__Anaeromyxobacter
## 2023-03-15 20:13:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Skermanella
## 2023-03-15 20:13:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Flammeovirga
## 2023-03-15 20:13:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zobellia
## 2023-03-15 20:13:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Xylella
## 2023-03-15 20:13:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Arcticibacter
## 2023-03-15 20:13:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Halocynthiibacter
## 2023-03-15 20:13:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Ventosimonadaceae.g__Ventosimonas
## 2023-03-15 20:13:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Pirellula
## 2023-03-15 20:13:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.g__Candidatus_Hepatobacter
## 2023-03-15 20:13:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Segetibacter
## 2023-03-15 20:13:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Orenia
## 2023-03-15 20:13:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Amorphus
## 2023-03-15 20:13:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Dactylosporangium
## 2023-03-15 20:13:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Herbidospora
## 2023-03-15 20:13:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Rhodobacter
## 2023-03-15 20:13:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Mitsuokella
## 2023-03-15 20:13:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Providencia
## 2023-03-15 20:13:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Emticicia
## 2023-03-15 20:13:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Belliella
## 2023-03-15 20:13:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Aquamavirus
## 2023-03-15 20:13:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Coleofasciculus
## 2023-03-15 20:13:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Holosporaceae.g__Holospora
## 2023-03-15 20:13:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobia_subdivision_3.g__Pedosphaera
## 2023-03-15 20:13:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhizobiaceae.g__Agrobacterium
## 2023-03-15 20:13:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Vulgatibacteraceae.g__Vulgatibacter
## 2023-03-15 20:13:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Falsirhodobacter
## 2023-03-15 20:13:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Buttiauxella
## 2023-03-15 20:13:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfovibrionaceae.g__Lawsonia
## 2023-03-15 20:13:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Oribacterium
## 2023-03-15 20:13:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.g__Elioraea
## 2023-03-15 20:13:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfobacter
## 2023-03-15 20:13:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Cecembia
## 2023-03-15 20:13:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Pimelobacter
## 2023-03-15 20:13:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Hylemonella
## 2023-03-15 20:13:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.g__Anaerosporomusa
## 2023-03-15 20:13:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfonatronaceae.g__Desulfonatronum
## 2023-03-15 20:13:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Slackia
## 2023-03-15 20:13:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Odoribacteraceae.g__Odoribacter
## 2023-03-15 20:13:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Vagococcus
## 2023-03-15 20:13:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Fervidicella
## 2023-03-15 20:13:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfobacterium
## 2023-03-15 20:13:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Listeriaceae.g__Listeria
## 2023-03-15 20:13:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Carnimonas
## 2023-03-15 20:13:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Salinisphaerales.f__Salinisphaeraceae.g__Salinisphaera
## 2023-03-15 20:13:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Defluviimonas
## 2023-03-15 20:13:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Xylophilus
## 2023-03-15 20:13:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Azohydromonas
## 2023-03-15 20:13:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Solibacillus
## 2023-03-15 20:13:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Paraglaciecola
## 2023-03-15 20:13:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Candidatus_Arthromitus
## 2023-03-15 20:13:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Cycloclasticus
## 2023-03-15 20:13:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Pseudobacteroides
## 2023-03-15 20:13:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Sediminibacterium
## 2023-03-15 20:13:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Amoebophilaceae.g__Candidatus_Cardinium
## 2023-03-15 20:13:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Methanomassiliicoccales.f__Methanomassiliicoccaceae.g__Candidatus_Methanoplasma
## 2023-03-15 20:13:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Microbispora
## 2023-03-15 20:13:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Criblamydiaceae.g__Criblamydia
## 2023-03-15 20:13:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Candidatus_Cloacimonetes.g__Candidatus_Cloacimonas
## 2023-03-15 20:13:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natrialba
## 2023-03-15 20:13:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Hamiltonella
## 2023-03-15 20:13:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Oxalobacteraceae.g__Herminiimonas
## 2023-03-15 20:13:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Tamlana
## 2023-03-15 20:13:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Midichloriaceae.g__Candidatus_Midichloria
## 2023-03-15 20:13:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Paracaedibacteraceae.g__Candidatus_Paracaedibacter
## 2023-03-15 20:13:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Planktothrix
## 2023-03-15 20:13:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Lampropedia
## 2023-03-15 20:13:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Candidatus_Glomeribacter
## 2023-03-15 20:13:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Kineosphaera
## 2023-03-15 20:13:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Syntrophomonadaceae.g__Syntrophomonas
## 2023-03-15 20:13:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Fervidobacteriaceae.g__Thermosipho
## 2023-03-15 20:13:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Methylocella
## 2023-03-15 20:13:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.g__Fangia
## 2023-03-15 20:13:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Hafnia
## 2023-03-15 20:13:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Tymovirales.f__Betaflexiviridae.g__Carlavirus
## 2023-03-15 20:13:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Fibrella
## 2023-03-15 20:13:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Thermotogaceae.g__Thermotoga
## 2023-03-15 20:13:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.g__Tomitella
## 2023-03-15 20:13:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiorhodovibrio
## 2023-03-15 20:13:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Yersinia
## 2023-03-15 20:13:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Cellulosilyticum
## 2023-03-15 20:13:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Dehalococcoidia.o__Dehalococcoidales.f__Dehalococcoidaceae.g__Dehalococcoides
## 2023-03-15 20:13:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Iridoviridae.g__Ranavirus
## 2023-03-15 20:13:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Planctomyces
## 2023-03-15 20:13:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Gorillibacterium
## 2023-03-15 20:13:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Tepidicaulis
## 2023-03-15 20:13:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Hydrogenobaculum
## 2023-03-15 20:13:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Nostoc
## 2023-03-15 20:13:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Psychroflexus
## 2023-03-15 20:13:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Haemophilus
## 2023-03-15 20:13:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Tenacibaculum
## 2023-03-15 20:13:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Bafinivirus
## 2023-03-15 20:13:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Petrotogales.g__Defluviitoga
## 2023-03-15 20:13:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Aurantimonadaceae.g__Martelella
## 2023-03-15 20:13:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Lentimicrobiaceae.g__Lentimicrobium
## 2023-03-15 20:13:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Thauera
## 2023-03-15 20:13:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Blastochloris
## 2023-03-15 20:13:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Salivirus
## 2023-03-15 20:13:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Aminobacter
## 2023-03-15 20:13:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Oceanimonas
## 2023-03-15 20:13:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Serinicoccus
## 2023-03-15 20:13:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanothermaceae.g__Methanothermus
## 2023-03-15 20:13:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Gordoniaceae.g__Gordonia
## 2023-03-15 20:13:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Persicobacteraceae.g__Persicobacter
## 2023-03-15 20:13:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Alicycliphilus
## 2023-03-15 20:13:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Rubellimicrobium
## 2023-03-15 20:13:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Candidatus_Aquiluna
## 2023-03-15 20:13:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Cobetia
## 2023-03-15 20:13:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Heliobacteriaceae.g__Heliobacterium
## 2023-03-15 20:13:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Denitrobacterium
## 2023-03-15 20:13:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Poxviridae.g__Betaentomopoxvirus
## 2023-03-15 20:13:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Thermobacillus
## 2023-03-15 20:13:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Parabacteroides
## 2023-03-15 20:13:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Ornithinibacillus
## 2023-03-15 20:13:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Sandaracinaceae.g__Sandaracinus
## 2023-03-15 20:13:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Klebsiella
## 2023-03-15 20:13:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_III._Incertae_Sedis.g__Caldicellulosiruptor
## 2023-03-15 20:13:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Gilvimarinus
## 2023-03-15 20:13:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Waddliaceae.g__Waddlia
## 2023-03-15 20:13:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.g__Candidatus_Sulcia
## 2023-03-15 20:13:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Campylobacteraceae.g__Campylobacter
## 2023-03-15 20:13:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Candidatus_Evansia
## 2023-03-15 20:13:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Methylibium
## 2023-03-15 20:13:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Jiangellales.f__Jiangellaceae.g__Jiangella
## 2023-03-15 20:13:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Acidithrix
## 2023-03-15 20:13:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Chlorobium
## 2023-03-15 20:13:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Hypoviridae.g__Hypovirus
## 2023-03-15 20:13:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.f__Leptospiraceae.g__Turneriella
## 2023-03-15 20:13:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Baculoviridae.g__Alphabaculovirus
## 2023-03-15 20:13:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Rhodothermaeota.c__Balneolia.o__Balneolales.f__Balneolaceae.g__Gracilimonas
## 2023-03-15 20:13:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Loktanella
## 2023-03-15 20:13:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Chelatococcus
## 2023-03-15 20:13:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Rivulariaceae.g__Rivularia
## 2023-03-15 20:13:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Prosthecomicrobium
## 2023-03-15 20:13:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Terracidiphilus
## 2023-03-15 20:13:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ruegeria
## 2023-03-15 20:13:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Ilumatobacter
## 2023-03-15 20:13:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Thiomicrospira
## 2023-03-15 20:13:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Paucibacter
## 2023-03-15 20:13:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Pyrodictiaceae.g__Pyrolobus
## 2023-03-15 20:13:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Kosmotogales.f__Kosmotogaceae.g__Kosmotoga
## 2023-03-15 20:13:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylocaldum
## 2023-03-15 20:13:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Acidaminococcales.f__Acidaminococcaceae.g__Succinispira
## 2023-03-15 20:13:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Gulbenkiania
## 2023-03-15 20:13:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Paraburkholderia
## 2023-03-15 20:13:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Carnobacteriaceae.g__Allofustis
## 2023-03-15 20:13:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophaceae.g__Desulfobacca
## 2023-03-15 20:13:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Necropsobacter
## 2023-03-15 20:13:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Marinomonas
## 2023-03-15 20:13:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Wigglesworthia
## 2023-03-15 20:13:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methanosarcinaceae.g__Methanomethylovorans
## 2023-03-15 20:13:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Thermonemataceae.g__Thermonema
## 2023-03-15 20:13:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Rothia
## 2023-03-15 20:13:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Baculoviridae.g__Betabaculovirus
## 2023-03-15 20:13:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pantoea
## 2023-03-15 20:13:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfovermiculus
## 2023-03-15 20:13:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Phycodnaviridae.g__Phaeovirus
## 2023-03-15 20:13:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Komagataeibacter
## 2023-03-15 20:13:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Brachyspirales.f__Brachyspiraceae.g__Brachyspira
## 2023-03-15 20:13:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Hydrogenibacillus
## 2023-03-15 20:13:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Geminicoccus
## 2023-03-15 20:13:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Agrococcus
## 2023-03-15 20:13:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Poxviridae.g__Molluscipoxvirus
## 2023-03-15 20:13:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_III._Incertae_Sedis.g__Thermoanaerobacterium
## 2023-03-15 20:13:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobiaceae.g__Verrucomicrobium
## 2023-03-15 20:13:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Jonquetella
## 2023-03-15 20:13:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Rickettsiaceae.g__Orientia
## 2023-03-15 20:13:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylotenera
## 2023-03-15 20:13:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Clostridioides
## 2023-03-15 20:13:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Thermocrispum
## 2023-03-15 20:13:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Arsukibacterium
## 2023-03-15 20:13:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Marinobacterium
## 2023-03-15 20:13:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Cystobacteraceae.g__Hyalangium
## 2023-03-15 20:13:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Niveispirillum
## 2023-03-15 20:13:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Faecalibaculum
## 2023-03-15 20:13:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Coprobacillus
## 2023-03-15 20:13:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Nannocystaceae.g__Plesiocystis
## 2023-03-15 20:13:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Bacteroidaceae.g__Bacteroides
## 2023-03-15 20:13:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Rhodoferax
## 2023-03-15 20:13:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chrysiogenetes.c__Chrysiogenetes.o__Chrysiogenales.f__Chrysiogenaceae.g__Desulfurispirillum
## 2023-03-15 20:13:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Alloactinosynnema
## 2023-03-15 20:13:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Algoriphagus
## 2023-03-15 20:13:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Pseudomonadaceae.g__Azotobacter
## 2023-03-15 20:13:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Nonomuraea
## 2023-03-15 20:13:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Gillisia
## 2023-03-15 20:13:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Anaerosalibacter
## 2023-03-15 20:13:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Hydrocarboniphaga
## 2023-03-15 20:13:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Bdellovibrionales.f__Bdellovibrionaceae.g__Bdellovibrio
## 2023-03-15 20:13:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Flaviviridae.g__Flavivirus
## 2023-03-15 20:13:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Bibersteinia
## 2023-03-15 20:13:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Oceanicaulis
## 2023-03-15 20:13:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Methylopila
## 2023-03-15 20:13:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Leclercia
## 2023-03-15 20:13:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Uliginosibacterium
## 2023-03-15 20:13:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseovarius
## 2023-03-15 20:13:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Neorickettsia
## 2023-03-15 20:13:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Caldiserica.c__Caldisericia.o__Caldisericales.f__Caldisericaceae.g__Caldisericum
## 2023-03-15 20:13:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Retroviridae.g__Alpharetrovirus
## 2023-03-15 20:13:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Mobiluncus
## 2023-03-15 20:13:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Trueperella
## 2023-03-15 20:13:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Labilitrichaceae.g__Labilithrix
## 2023-03-15 20:13:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Stenoxybacter
## 2023-03-15 20:13:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Rhadinovirus
## 2023-03-15 20:13:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermacoccaceae.g__Demetria
## 2023-03-15 20:13:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Acidaminococcales.f__Acidaminococcaceae.g__Phascolarctobacterium
## 2023-03-15 20:13:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Ideonella
## 2023-03-15 20:13:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Pontibacter
## 2023-03-15 20:13:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Tyzzerella
## 2023-03-15 20:13:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Kordia
## 2023-03-15 20:13:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Thermovirga
## 2023-03-15 20:13:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Methylosinus
## 2023-03-15 20:13:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Halalkalibacillus
## 2023-03-15 20:13:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Veillonellales.f__Veillonellaceae.g__Dialister
## 2023-03-15 20:13:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiales_Family_XIII._Incertae_Sedis.g__Casaltella
## 2023-03-15 20:13:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Alicyclobacillaceae.g__Kyrpidia
## 2023-03-15 20:13:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Spo1virus
## 2023-03-15 20:13:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanococci.o__Methanococcales.f__Methanocaldococcaceae.g__Methanocaldococcus
## 2023-03-15 20:13:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Prauserella
## 2023-03-15 20:13:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Flexibacter
## 2023-03-15 20:13:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Coxiellaceae.g__Diplorickettsia
## 2023-03-15 20:13:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Saccharomonospora
## 2023-03-15 20:13:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Stigonematales.g__Mastigocoleus
## 2023-03-15 20:13:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Opitutales.f__Opitutaceae.g__Opitutus
## 2023-03-15 20:13:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Imtechella
## 2023-03-15 20:13:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiales_Family_XVII._Incertae_Sedis.g__Thermaerobacter
## 2023-03-15 20:13:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Astroviridae.g__Mamastrovirus
## 2023-03-15 20:13:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Flectobacillus
## 2023-03-15 20:13:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Helicobacter
## 2023-03-15 20:13:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Pandoraea
## 2023-03-15 20:13:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Nafulsella
## 2023-03-15 20:13:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Aquitalea
## 2023-03-15 20:13:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prolixibacteraceae.g__Draconibacterium
## 2023-03-15 20:13:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Achromobacter
## 2023-03-15 20:13:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Phycicoccus
## 2023-03-15 20:13:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Saccharicrinis
## 2023-03-15 20:13:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Caldithrix
## 2023-03-15 20:13:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Mycetocola
## 2023-03-15 20:13:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Rhodomicrobium
## 2023-03-15 20:13:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Flaviviridae.g__Pestivirus
## 2023-03-15 20:13:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Herpesvirales.f__Alloherpesviridae.g__Ictalurivirus
## 2023-03-15 20:13:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Nesterenkonia
## 2023-03-15 20:13:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Fictibacillus
## 2023-03-15 20:13:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Candidatus_Endolissoclinum
## 2023-03-15 20:13:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Phycodnaviridae.g__Coccolithovirus
## 2023-03-15 20:13:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Polyomaviridae.g__Polyomavirus
## 2023-03-15 20:13:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Actinotalea
## 2023-03-15 20:13:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Segniliparaceae.g__Segniliparus
## 2023-03-15 20:13:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Halothece
## 2023-03-15 20:13:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Zavarzinella
## 2023-03-15 20:13:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Moritellaceae.g__Moritella
## 2023-03-15 20:13:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Moorella
## 2023-03-15 20:13:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Caldalkalibacillus
## 2023-03-15 20:13:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Eubacterium
## 2023-03-15 20:13:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Polaribacter
## 2023-03-15 20:13:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Geitlerinema
## 2023-03-15 20:13:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Ehrlichia
## 2023-03-15 20:13:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Hyphomicrobium
## 2023-03-15 20:13:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Brachymonas
## 2023-03-15 20:13:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Chlamydiaceae.g__Chlamydia
## 2023-03-15 20:13:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Leptotrichiaceae.g__Sneathia
## 2023-03-15 20:13:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfobulbus
## 2023-03-15 20:13:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Sicinivirus
## 2023-03-15 20:13:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Roseateles
## 2023-03-15 20:13:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Knoellia
## 2023-03-15 20:13:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Acetivibrio
## 2023-03-15 20:13:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Anditalea
## 2023-03-15 20:13:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Lamprocystis
## 2023-03-15 20:13:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Candidatus_Nasuia
## 2023-03-15 20:13:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Leuconostocaceae.g__Leuconostoc
## 2023-03-15 20:13:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudovibrio
## 2023-03-15 20:13:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Oceanobacter
## 2023-03-15 20:13:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Jannaschia
## 2023-03-15 20:13:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Dehalobacter
## 2023-03-15 20:13:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Cryptobacterium
## 2023-03-15 20:13:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Propionibacteriaceae.g__Aestuariimicrobium
## 2023-03-15 20:13:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Leuconostocaceae.g__Fructobacillus
## 2023-03-15 20:13:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Epulopiscium
## 2023-03-15 20:13:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Thalassospira
## 2023-03-15 20:13:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Apibacter
## 2023-03-15 20:13:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Anaerotruncus
## 2023-03-15 20:13:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Caldimonas
## 2023-03-15 20:13:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Thaumarchaeota.c__Nitrososphaeria.o__Nitrososphaerales.f__Nitrososphaeraceae.g__Candidatus_Nitrosocosmicus
## 2023-03-15 20:13:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Geobacteraceae.g__Geobacter
## 2023-03-15 20:13:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Nepovirus
## 2023-03-15 20:13:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Geodermatophilales.f__Geodermatophilaceae.g__Blastococcus
## 2023-03-15 20:13:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Tannerella
## 2023-03-15 20:13:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Acidobacteria.g__Thermoanaerobaculum
## 2023-03-15 20:13:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Streptosporangium
## 2023-03-15 20:13:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Methylophaga
## 2023-03-15 20:13:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Sinomonas
## 2023-03-15 20:13:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Entomoplasmatales.f__Entomoplasmataceae.g__Mesoplasma
## 2023-03-15 20:13:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Acidimicrobium
## 2023-03-15 20:13:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Pasteurella
## 2023-03-15 20:13:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Actibacterium
## 2023-03-15 20:13:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Oceanobacillus
## 2023-03-15 20:13:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Sporosarcina
## 2023-03-15 20:13:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Mycobacteriaceae.g__Amycolicicoccus
## 2023-03-15 20:13:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Rubrivivax
## 2023-03-15 20:13:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Rhodovulum
## 2023-03-15 20:13:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Cellvibrio
## 2023-03-15 20:13:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Haloferax
## 2023-03-15 20:13:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Pseudoalteromonadaceae.g__Algicola
maaslin_PC_group_PC <- function_Maaslin2(df_ACC_filter_Plate_Center_Voom_SNM, "PC_combined", "Temp/PC_group_PC")
## [1] "Warning: Deleting existing log file: Temp/PC_group_PC/maaslin2.log"
## 2023-03-15 20:13:56 INFO::Writing function arguments to log file
## 2023-03-15 20:13:56 INFO::Verifying options selected are valid
## 2023-03-15 20:13:56 INFO::Determining format of input files
## 2023-03-15 20:13:56 INFO::Input format is data samples as rows and metadata samples as rows
## 2023-03-15 20:13:56 INFO::Formula for random effects: expr ~ (1 | SEX) + (1 | Ethnicity_Race) + (1 | AGE) + (1 | Neoplasm_Status) + (1 | Clinical_Status_3_Mo_Post.Op) + (1 | Surgical_margin) + (1 | ATYPICAL_MITOTIC_FIGURES)
## 2023-03-15 20:13:56 INFO::Formula for fixed effects: expr ~  PC_combined
## 2023-03-15 20:13:56 INFO::Filter data based on min abundance and min prevalence
## 2023-03-15 20:13:56 INFO::Total samples in data: 77
## 2023-03-15 20:13:56 INFO::Min samples required with min abundance for a feature not to be filtered: 0.000000
## 2023-03-15 20:13:56 INFO::Total filtered features: 9
## 2023-03-15 20:13:56 INFO::Filtered feature names from abundance and prevalence filtering: k__Viruses.f__Chrysoviridae.g__Chrysovirus, k__Viruses.f__Hytrosaviridae.g__Muscavirus, k__Viruses.f__Closteroviridae.g__Crinivirus, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Nitrococcus, k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halomicrobium, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Azovibrio, k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Psychrobacillus, k__Bacteria.p__Thermotogae.c__Thermotogae.o__Petrotogales.g__Petrotoga, k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Aphanocapsa
## 2023-03-15 20:13:56 INFO::Total filtered features with variance filtering: 0
## 2023-03-15 20:13:56 INFO::Filtered feature names from variance filtering:
## 2023-03-15 20:13:56 INFO::Running selected normalization method: NONE
## 2023-03-15 20:13:56 INFO::Applying z-score to standardize continuous metadata
## 2023-03-15 20:13:56 INFO::Running selected transform method: NONE
## 2023-03-15 20:13:56 INFO::Running selected analysis method: LM
## 2023-03-15 20:13:56 INFO::Creating cluster of 6 R processes
## 2023-03-15 20:14:18 INFO::Counting total values for each feature
## 2023-03-15 20:14:18 WARNING::Deleting existing residuals file: Temp/PC_group_PC/residuals.rds
## 2023-03-15 20:14:18 INFO::Writing residuals to file Temp/PC_group_PC/residuals.rds
## 2023-03-15 20:14:18 WARNING::Deleting existing fitted file: Temp/PC_group_PC/fitted.rds
## 2023-03-15 20:14:18 INFO::Writing fitted values to file Temp/PC_group_PC/fitted.rds
## 2023-03-15 20:14:18 WARNING::Deleting existing ranef file: Temp/PC_group_PC/ranef.rds
## 2023-03-15 20:14:18 INFO::Writing extracted random effects to file Temp/PC_group_PC/ranef.rds
## 2023-03-15 20:14:18 INFO::Writing all results to file (ordered by increasing q-values): Temp/PC_group_PC/all_results.tsv
## 2023-03-15 20:14:18 INFO::Writing the significant results (those which are less than or equal to the threshold of 0.250000 ) to file (ordered by increasing q-values): Temp/PC_group_PC/significant_results.tsv
## 2023-03-15 20:14:18 INFO::Writing heatmap of significant results to file: Temp/PC_group_PC/heatmap.pdf
## Warning in xtfrm.data.frame(x): cannot xtfrm data frames
## [1] "There is not enough metadata in the associations to create a heatmap plot. Please review the associations in text output file."
## 2023-03-15 20:14:18 INFO::Writing association plots (one for each significant association) to output folder: Temp/PC_group_PC
## 2023-03-15 20:14:18 INFO::Plotting associations from most to least significant, grouped by metadata
## 2023-03-15 20:14:18 INFO::Plotting data for metadata number 1, PC_combined
## 2023-03-15 20:14:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Herpesvirales.f__Malacoherpesviridae.g__Ostreavirus
## 2023-03-15 20:14:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.g__Bacilladnavirus
## 2023-03-15 20:14:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Thermincola
## 2023-03-15 20:14:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Solitalea
## 2023-03-15 20:14:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudophaeobacter
## 2023-03-15 20:14:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Wolinella
## 2023-03-15 20:14:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Thaumarchaeota.o__Nitrosopumilales.f__Nitrosopumilaceae.g__Nitrosopumilus
## 2023-03-15 20:14:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Halolactibacillus
## 2023-03-15 20:14:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Alkalilimnicola
## 2023-03-15 20:14:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Legionellaceae.g__Tatlockia
## 2023-03-15 20:14:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__L5likevirus
## 2023-03-15 20:14:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.g__Aciduliprofundum
## 2023-03-15 20:14:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Balneatrix
## 2023-03-15 20:14:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomarinum
## 2023-03-15 20:14:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Sulfuricurvum
## 2023-03-15 20:14:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Candidatus_Methylopumilus
## 2023-03-15 20:14:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Nisaea
## 2023-03-15 20:14:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Nocardiopsaceae.g__Streptomonospora
## 2023-03-15 20:14:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halanaeroarchaeum
## 2023-03-15 20:14:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Marinagarivorans
## 2023-03-15 20:14:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Coprobacter
## 2023-03-15 20:14:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Arhodomonas
## 2023-03-15 20:14:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.o__Haloplasmatales.f__Haloplasmataceae.g__Haloplasma
## 2023-03-15 20:14:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Yokenella
## 2023-03-15 20:14:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Mimiviridae.g__Mimivirus
## 2023-03-15 20:14:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Stanieria
## 2023-03-15 20:14:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Shuttleworthia
## 2023-03-15 20:14:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylothermaceae.g__Methylohalobius
## 2023-03-15 20:14:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiocystis
## 2023-03-15 20:14:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Rudanella
## 2023-03-15 20:14:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Youngiibacter
## 2023-03-15 20:14:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Cryomorphaceae.g__Owenweeksia
## 2023-03-15 20:14:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Azonexus
## 2023-03-15 20:14:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Zymobacter
## 2023-03-15 20:14:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Candidatus_Photodesmus
## 2023-03-15 20:14:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Obesumbacterium
## 2023-03-15 20:14:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Moranella
## 2023-03-15 20:14:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Hydrogenovibrio
## 2023-03-15 20:14:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Phycodnaviridae.g__Coccolithovirus
## 2023-03-15 20:14:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Phikzlikevirus
## 2023-03-15 20:14:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bradyrhizobiaceae.g__Oligotropha
## 2023-03-15 20:14:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Myxosarcina
## 2023-03-15 20:14:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Gallionella
## 2023-03-15 20:14:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Nautilia
## 2023-03-15 20:14:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Basfia
## 2023-03-15 20:14:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Caldimicrobium
## 2023-03-15 20:14:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Dactylococcopsis
## 2023-03-15 20:14:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Cp220likevirus
## 2023-03-15 20:14:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Nitritalea
## 2023-03-15 20:14:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Glycomycetales.f__Glycomycetaceae.g__Haloglycomyces
## 2023-03-15 20:14:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Bicaudaviridae.g__Bicaudavirus
## 2023-03-15 20:14:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Circoviridae.g__Gyrovirus
## 2023-03-15 20:14:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Anelloviridae.g__Alphatorquevirus
## 2023-03-15 20:14:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Closteroviridae.g__Closterovirus
## 2023-03-15 20:14:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Fuselloviridae.g__Alphafusellovirus
## 2023-03-15 20:14:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Virgaviridae.g__Pecluvirus
## 2023-03-15 20:14:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Orthomyxoviridae.g__Influenzavirus_C
## 2023-03-15 20:14:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phi29likevirus
## 2023-03-15 20:14:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Caulimoviridae.g__Cavemovirus
## 2023-03-15 20:14:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Caulimoviridae.g__Caulimovirus
## 2023-03-15 20:14:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Bromoviridae.g__Alfamovirus
## 2023-03-15 20:14:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Sp6likevirus
## 2023-03-15 20:14:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Tymovirales.f__Alphaflexiviridae.g__Allexivirus
## 2023-03-15 20:14:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Parvoviridae.g__Ambidensovirus
## 2023-03-15 20:14:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Comovirus
## 2023-03-15 20:14:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.g__Polemovirus
## 2023-03-15 20:14:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Bromoviridae.g__Ilarvirus
## 2023-03-15 20:14:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Totiviridae.g__Totivirus
## 2023-03-15 20:14:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Potyviridae.g__Tritimovirus
## 2023-03-15 20:14:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Papillomaviridae.g__Dyopipapillomavirus
## 2023-03-15 20:14:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Methanomassiliicoccales.f__Methanomassiliicoccaceae.g__Candidatus_Methanomethylophilus
## 2023-03-15 20:14:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Mangrovibacter
## 2023-03-15 20:14:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfospira
## 2023-03-15 20:14:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Paeniglutamicibacter
## 2023-03-15 20:14:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Candidatus_Koribacter
## 2023-03-15 20:14:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Marinococcus
## 2023-03-15 20:14:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfobacula
## 2023-03-15 20:14:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thalassobium
## 2023-03-15 20:14:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Mesonia
## 2023-03-15 20:14:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Candidatus_Atelocyanobacterium
## 2023-03-15 20:14:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Thermoplasmatales.f__Ferroplasmaceae.g__Ferroplasma
## 2023-03-15 20:14:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Dielma
## 2023-03-15 20:14:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Halostagnicola
## 2023-03-15 20:14:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfonatronospira
## 2023-03-15 20:14:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Cloacibacillus
## 2023-03-15 20:14:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Subdoligranulum
## 2023-03-15 20:14:27 INFO::Creating boxplot for categorical data, PC_combined vs contaminant1Harvard
## 2023-03-15 20:14:27 INFO::Creating boxplot for categorical data, PC_combined vs contaminant2HarvardCanadaBaylorWashU
## 2023-03-15 20:14:27 INFO::Creating boxplot for categorical data, PC_combined vs contaminant3AllSeqCenters
## 2023-03-15 20:14:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Tymovirales.f__Betaflexiviridae.g__Foveavirus
## 2023-03-15 20:14:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Bcep22likevirus
## 2023-03-15 20:14:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Barnyardlikevirus
## 2023-03-15 20:14:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Reinekea
## 2023-03-15 20:14:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__T5likevirus
## 2023-03-15 20:14:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Pseudobutyrivibrio
## 2023-03-15 20:14:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Tolumonas
## 2023-03-15 20:14:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Anelloviridae.g__Betatorquevirus
## 2023-03-15 20:14:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfurivibrio
## 2023-03-15 20:14:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Siccibacter
## 2023-03-15 20:14:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Thermoactinomycetaceae.g__Shimazuella
## 2023-03-15 20:14:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Actinopolymorpha
## 2023-03-15 20:14:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Kosmotogales.f__Kosmotogaceae.g__Mesotoga
## 2023-03-15 20:14:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Leeia
## 2023-03-15 20:14:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Narnaviridae.g__Narnavirus
## 2023-03-15 20:14:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Litoreibacter
## 2023-03-15 20:14:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Coriobacterium
## 2023-03-15 20:14:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Arenitalea
## 2023-03-15 20:14:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Skunalikevirus
## 2023-03-15 20:14:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Jeotgalibacillus
## 2023-03-15 20:14:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__N4likevirus
## 2023-03-15 20:14:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Papillomaviridae.g__Betapapillomavirus
## 2023-03-15 20:14:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitiniphilus
## 2023-03-15 20:14:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Alicyclobacillaceae.g__Effusibacillus
## 2023-03-15 20:14:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Sellimonas
## 2023-03-15 20:14:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Poxviridae.g__Parapoxvirus
## 2023-03-15 20:14:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Rummeliibacillus
## 2023-03-15 20:14:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Thaumarchaeota.g__Candidatus_Nitrosotenuis
## 2023-03-15 20:14:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Lambdalikevirus
## 2023-03-15 20:14:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Basilea
## 2023-03-15 20:14:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Cyclobacterium
## 2023-03-15 20:14:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.f__Competibacteraceae.g__Candidatus_Competibacter
## 2023-03-15 20:14:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Thaumarchaeota.o__Nitrosopumilales.f__Nitrosopumilaceae.g__Candidatus_Nitrosoarchaeum
## 2023-03-15 20:14:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halarchaeum
## 2023-03-15 20:14:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Pelodictyon
## 2023-03-15 20:14:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Chloroflexia.o__Chloroflexales.f__Oscillochloridaceae.g__Oscillochloris
## 2023-03-15 20:14:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Poxviridae.g__Avipoxvirus
## 2023-03-15 20:14:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Lymphocryptovirus
## 2023-03-15 20:14:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Robiginitalea
## 2023-03-15 20:14:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halalkalicoccus
## 2023-03-15 20:14:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Natronomonas
## 2023-03-15 20:14:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Stigonematales.g__Mastigocladopsis
## 2023-03-15 20:14:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitinibacter
## 2023-03-15 20:14:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Paucisalibacillus
## 2023-03-15 20:14:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiorhodococcus
## 2023-03-15 20:14:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatirhabdium
## 2023-03-15 20:14:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halobellus
## 2023-03-15 20:14:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Gynuella
## 2023-03-15 20:14:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Ardenticatenia.o__Ardenticatenales.f__Ardenticatenaceae.g__Ardenticatena
## 2023-03-15 20:14:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Candidatus_Phaeomarinobacter
## 2023-03-15 20:14:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Marinimicrobium
## 2023-03-15 20:14:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Poxviridae.g__Cervidpoxvirus
## 2023-03-15 20:14:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Pseudaminobacter
## 2023-03-15 20:14:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatiglans
## 2023-03-15 20:14:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Aliiroseovarius
## 2023-03-15 20:14:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Ammonifex
## 2023-03-15 20:14:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Jejuia
## 2023-03-15 20:14:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Flexilinea
## 2023-03-15 20:14:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Centipeda
## 2023-03-15 20:14:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Cyanobacterium
## 2023-03-15 20:14:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Glutamicibacter
## 2023-03-15 20:14:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.g__Methyloceanibacter
## 2023-03-15 20:14:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pragia
## 2023-03-15 20:14:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Halotalea
## 2023-03-15 20:14:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Actinotignum
## 2023-03-15 20:14:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Thaumarchaeota.c__Nitrososphaeria.o__Nitrososphaerales.f__Nitrososphaeraceae.g__Nitrososphaera
## 2023-03-15 20:14:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Tistrella
## 2023-03-15 20:14:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Bermanella
## 2023-03-15 20:14:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Crocinitomicaceae.g__Crocinitomix
## 2023-03-15 20:14:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ketogulonicigenium
## 2023-03-15 20:14:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Poxviridae.g__Alphaentomopoxvirus
## 2023-03-15 20:14:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Carnobacteriaceae.g__Alloiococcus
## 2023-03-15 20:14:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Gramella
## 2023-03-15 20:14:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Legionellaceae.g__Fluoribacter
## 2023-03-15 20:14:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanoregulaceae.g__Methanosphaerula
## 2023-03-15 20:14:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Microcoleus
## 2023-03-15 20:14:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Geovibrio
## 2023-03-15 20:14:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Bhargavaea
## 2023-03-15 20:14:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Acaricomes
## 2023-03-15 20:14:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylococcus
## 2023-03-15 20:14:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Methylocapsa
## 2023-03-15 20:14:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.c__Spartobacteria.g__Terrimicrobium
## 2023-03-15 20:14:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.g__Nitratifractor
## 2023-03-15 20:14:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Aurantimonadaceae.g__Fulvimarina
## 2023-03-15 20:14:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Campylobacteraceae.g__Sulfurospirillum
## 2023-03-15 20:14:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Caliciviridae.g__Vesivirus
## 2023-03-15 20:14:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermodesulfobiaceae.g__Thermodesulfobium
## 2023-03-15 20:14:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phikmvlikevirus
## 2023-03-15 20:14:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Hellea
## 2023-03-15 20:14:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Fusobacteriaceae.g__Cetobacterium
## 2023-03-15 20:14:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Thioploca
## 2023-03-15 20:14:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Kandleria
## 2023-03-15 20:14:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Puniceibacterium
## 2023-03-15 20:14:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Poxviridae.g__Yatapoxvirus
## 2023-03-15 20:14:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Agarivorans
## 2023-03-15 20:14:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Riesia
## 2023-03-15 20:14:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Sphingorhabdus
## 2023-03-15 20:14:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Hydrogenobacter
## 2023-03-15 20:14:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Rhodothermaeota.c__Balneolia.o__Balneolales.f__Balneolaceae.g__Balneola
## 2023-03-15 20:14:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Hepeviridae.g__Piscihepevirus
## 2023-03-15 20:14:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfotignum
## 2023-03-15 20:14:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Cryocola
## 2023-03-15 20:14:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Franconibacter
## 2023-03-15 20:14:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Pleurocapsa
## 2023-03-15 20:14:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Amphibacillus
## 2023-03-15 20:14:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Shimwellia
## 2023-03-15 20:14:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Dermatophilus
## 2023-03-15 20:14:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Lentibacillus
## 2023-03-15 20:14:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Microvirgula
## 2023-03-15 20:14:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Candidatus_Neoehrlichia
## 2023-03-15 20:14:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Aeribacillus
## 2023-03-15 20:14:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Herbiconiux
## 2023-03-15 20:14:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Joostella
## 2023-03-15 20:14:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Archaeoglobi.o__Archaeoglobales.f__Archaeoglobaceae.g__Geoglobus
## 2023-03-15 20:14:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.o__Bacteroidetes_Order_II._Incertae_sedis.f__Rhodothermaceae.g__Salisaeta
## 2023-03-15 20:14:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sedimentitalea
## 2023-03-15 20:14:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Pyramidobacter
## 2023-03-15 20:14:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Thermosynechococcus
## 2023-03-15 20:14:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Bdellovibrionales.f__Halobacteriovoraceae.g__Halobacteriovorax
## 2023-03-15 20:14:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Bdellovibrionales.f__Bacteriovoracaceae.g__Bacteriovorax
## 2023-03-15 20:14:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Aestuariivita
## 2023-03-15 20:14:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Spirochaetaceae.g__Salinispira
## 2023-03-15 20:14:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Oleispira
## 2023-03-15 20:14:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.g__Timonella
## 2023-03-15 20:14:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.o__Bacteroidetes_Order_II._Incertae_sedis.f__Rhodothermaceae.g__Salinibacter
## 2023-03-15 20:14:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Desulfuromonadaceae.g__Desulfuromonas
## 2023-03-15 20:14:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Thermopetrobacter
## 2023-03-15 20:14:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Isosphaeraceae.g__Singulisphaera
## 2023-03-15 20:14:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Arenaviridae.g__Arenavirus
## 2023-03-15 20:14:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Aquamavirus
## 2023-03-15 20:14:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Uliginosibacterium
## 2023-03-15 20:14:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Paraoerskovia
## 2023-03-15 20:14:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Isosphaeraceae.g__Isosphaera
## 2023-03-15 20:14:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Derxia
## 2023-03-15 20:14:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Coprococcus
## 2023-03-15 20:14:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Raphidiopsis
## 2023-03-15 20:14:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Sediminibacter
## 2023-03-15 20:14:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudorhodobacter
## 2023-03-15 20:14:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oleiphilaceae.g__Oleiphilus
## 2023-03-15 20:14:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Mucispirillum
## 2023-03-15 20:14:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Mimiviridae.g__Cafeteriavirus
## 2023-03-15 20:14:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Prochlorales.f__Prochlorotrichaceae.g__Prochlorothrix
## 2023-03-15 20:14:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Sporomusaceae.g__Pelosinus
## 2023-03-15 20:14:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Anaerostipes
## 2023-03-15 20:14:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Marvinbryantia
## 2023-03-15 20:14:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Veillonellales.f__Veillonellaceae.g__Megasphaera
## 2023-03-15 20:14:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Kushneria
## 2023-03-15 20:14:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Thaumarchaeota.g__Candidatus_Nitrosopelagicus
## 2023-03-15 20:14:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Halobacteroides
## 2023-03-15 20:14:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.g__Candidatus_Babela
## 2023-03-15 20:14:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Echinicola
## 2023-03-15 20:14:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Synergistes
## 2023-03-15 20:14:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Denitrobacterium
## 2023-03-15 20:14:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prevotellaceae.g__Hallella
## 2023-03-15 20:14:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Enterorhabdus
## 2023-03-15 20:14:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Silanimonas
## 2023-03-15 20:14:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Propionispira
## 2023-03-15 20:14:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Alphacoronavirus
## 2023-03-15 20:14:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Acidocella
## 2023-03-15 20:14:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Akkermansiaceae.g__Akkermansia
## 2023-03-15 20:14:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Caulobacterales.f__Caulobacteraceae.g__Woodsholea
## 2023-03-15 20:14:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfonatronovibrio
## 2023-03-15 20:14:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Tunalikevirus
## 2023-03-15 20:14:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Nodosilinea
## 2023-03-15 20:14:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Thermales.f__Thermaceae.g__Oceanithermus
## 2023-03-15 20:14:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Ponticaulis
## 2023-03-15 20:14:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Melissococcus
## 2023-03-15 20:14:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinopolysporales.f__Actinopolysporaceae.g__Actinopolyspora
## 2023-03-15 20:14:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Hahellaceae.g__Zooshikella
## 2023-03-15 20:14:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Pseudohongiella
## 2023-03-15 20:14:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.f__Leptospiraceae.g__Leptonema
## 2023-03-15 20:14:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Candidatus_Glomeribacter
## 2023-03-15 20:14:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Virgibacillus
## 2023-03-15 20:14:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Chlamydiaceae.g__Chlamydia
## 2023-03-15 20:14:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Lunatimonas
## 2023-03-15 20:14:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Bifidobacteriales.f__Bifidobacteriaceae.g__Alloscardovia
## 2023-03-15 20:14:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Acidobacterium
## 2023-03-15 20:14:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Caminibacter
## 2023-03-15 20:14:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinosynnema
## 2023-03-15 20:14:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Halieaceae.g__Congregibacter
## 2023-03-15 20:14:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Terasakiella
## 2023-03-15 20:14:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Thiolapillus
## 2023-03-15 20:14:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Bacteroidaceae.g__Bacteroides
## 2023-03-15 20:14:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Lactobacillaceae.g__Sharpea
## 2023-03-15 20:14:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Fabavirus
## 2023-03-15 20:14:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Proteus
## 2023-03-15 20:14:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Haloterrigena
## 2023-03-15 20:14:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Kordiimonadales.f__Kordiimonadaceae.g__Kordiimonas
## 2023-03-15 20:14:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Asaia
## 2023-03-15 20:14:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Gallaecimonas
## 2023-03-15 20:14:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thalassobacter
## 2023-03-15 20:14:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Salegentibacter
## 2023-03-15 20:14:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Ishikawaella
## 2023-03-15 20:14:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Kibdelosporangium
## 2023-03-15 20:14:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Vitreoscilla
## 2023-03-15 20:14:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Xenococcus
## 2023-03-15 20:14:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Candidatus_Desulforudis
## 2023-03-15 20:14:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Alkaliphilus
## 2023-03-15 20:14:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Betacoronavirus
## 2023-03-15 20:14:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Salinimicrobium
## 2023-03-15 20:14:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Beggiatoa
## 2023-03-15 20:14:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Hydrogenophilales.f__Hydrogenophilaceae.g__Thiobacillus
## 2023-03-15 20:14:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Dicistroviridae.g__Cripavirus
## 2023-03-15 20:14:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Kineosporiales.f__Kineosporiaceae.g__Kineosporia
## 2023-03-15 20:14:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylobacillus
## 2023-03-15 20:14:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Leucothrix
## 2023-03-15 20:14:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Simiduia
## 2023-03-15 20:14:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Baculoviridae.g__Deltabaculovirus
## 2023-03-15 20:14:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Kribbella
## 2023-03-15 20:14:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Dongia
## 2023-03-15 20:14:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfarculales.f__Desulfarculaceae.g__Desulfarculus
## 2023-03-15 20:14:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Microchaetaceae.g__Microchaete
## 2023-03-15 20:14:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bradyrhizobiaceae.g__Tardiphaga
## 2023-03-15 20:14:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Limnochordia.o__Limnochordales.f__Limnochordaceae.g__Limnochorda
## 2023-03-15 20:14:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Stappia
## 2023-03-15 20:14:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Crenobacter
## 2023-03-15 20:14:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Starkeya
## 2023-03-15 20:14:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sulfitobacter
## 2023-03-15 20:14:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Thermodesulfatator
## 2023-03-15 20:14:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Chelativorans
## 2023-03-15 20:14:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Halorhodospira
## 2023-03-15 20:14:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Microbulbiferaceae.g__Microbulbifer
## 2023-03-15 20:14:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Fusobacteriaceae.g__Ilyobacter
## 2023-03-15 20:14:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Rubritepida
## 2023-03-15 20:14:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Stigonematales.g__Hapalosiphon
## 2023-03-15 20:14:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Catelliglobosispora
## 2023-03-15 20:14:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Leptotrichiaceae.g__Streptobacillus
## 2023-03-15 20:14:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Cedecea
## 2023-03-15 20:14:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Diaphorobacter
## 2023-03-15 20:14:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Chitinimonas
## 2023-03-15 20:14:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Gordoniaceae.g__Gordonia
## 2023-03-15 20:14:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Thioalkalimicrobium
## 2023-03-15 20:14:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Oceanicaulis
## 2023-03-15 20:14:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Hahellaceae.g__Hahella
## 2023-03-15 20:14:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_III._Incertae_Sedis.g__Thermosediminibacter
## 2023-03-15 20:14:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methermicoccaceae.g__Methermicoccus
## 2023-03-15 20:14:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Coxiellaceae.g__Diplorickettsia
## 2023-03-15 20:14:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Rouxiella
## 2023-03-15 20:14:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Thalassobaculum
## 2023-03-15 20:14:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Confluentimicrobium
## 2023-03-15 20:14:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Zymomonas
## 2023-03-15 20:14:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Thermoplasmatales.f__Picrophilaceae.g__Picrophilus
## 2023-03-15 20:14:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Polycyclovorans
## 2023-03-15 20:14:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Gemmobacter
## 2023-03-15 20:14:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Virgaviridae.g__Pomovirus
## 2023-03-15 20:14:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Helcococcus
## 2023-03-15 20:14:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Steroidobacter
## 2023-03-15 20:14:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Vibrio
## 2023-03-15 20:14:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Desulfurococcaceae.g__Ignicoccus
## 2023-03-15 20:14:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Tepidicaulis
## 2023-03-15 20:14:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanobacteriaceae.g__Methanosphaera
## 2023-03-15 20:14:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Anaerovibrio
## 2023-03-15 20:14:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Anaerofustis
## 2023-03-15 20:14:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Acidobacteria.c__Solibacteres.o__Solibacterales.g__Bryobacter
## 2023-03-15 20:14:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Flavisolibacter
## 2023-03-15 20:14:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Nitrosococcus
## 2023-03-15 20:14:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Kluyvera
## 2023-03-15 20:14:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Peptostreptococcus
## 2023-03-15 20:14:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Carboxydothermus
## 2023-03-15 20:14:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Silvibacterium
## 2023-03-15 20:14:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Sporolactobacillaceae.g__Tuberibacillus
## 2023-03-15 20:14:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Dinoroseobacter
## 2023-03-15 20:14:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Terracoccus
## 2023-03-15 20:14:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Thermanaerovibrio
## 2023-03-15 20:14:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Verrucosispora
## 2023-03-15 20:14:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Haloferax
## 2023-03-15 20:14:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Lentisphaerae.c__Lentisphaeria.o__Lentisphaerales.f__Lentisphaeraceae.g__Lentisphaera
## 2023-03-15 20:14:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Granulicella
## 2023-03-15 20:14:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chrysiogenetes.c__Chrysiogenetes.o__Chrysiogenales.f__Chrysiogenaceae.g__Desulfurispirillum
## 2023-03-15 20:14:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Isoptericola
## 2023-03-15 20:14:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Microthrixaceae.g__Candidatus_Microthrix
## 2023-03-15 20:14:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Iridoviridae.g__Ranavirus
## 2023-03-15 20:14:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Blastomonas
## 2023-03-15 20:14:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Clostridium
## 2023-03-15 20:14:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Fibrobacteres.c__Fibrobacteria.o__Fibrobacterales.f__Fibrobacteraceae.g__Fibrobacter
## 2023-03-15 20:14:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Spounalikevirus
## 2023-03-15 20:14:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Ornatilinea
## 2023-03-15 20:14:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Enteractinococcus
## 2023-03-15 20:14:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Enorma
## 2023-03-15 20:14:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Candidatus_Aquiluna
## 2023-03-15 20:14:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Ilumatobacter
## 2023-03-15 20:14:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Hafnia
## 2023-03-15 20:14:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Magnetococcales.f__Magnetococcaceae.g__Magnetococcus
## 2023-03-15 20:14:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Adenoviridae.g__Mastadenovirus
## 2023-03-15 20:14:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Faecalibaculum
## 2023-03-15 20:14:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Yaniella
## 2023-03-15 20:14:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Parvibaculum
## 2023-03-15 20:14:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Ideonella
## 2023-03-15 20:14:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Chitinophaga
## 2023-03-15 20:14:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_III._Incertae_Sedis.g__Caldicellulosiruptor
## 2023-03-15 20:14:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Maribius
## 2023-03-15 20:14:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Nostoc
## 2023-03-15 20:14:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Rubinisphaera
## 2023-03-15 20:14:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Pelagibacterium
## 2023-03-15 20:14:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Jannaschia
## 2023-03-15 20:14:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.f__Leptospiraceae.g__Turneriella
## 2023-03-15 20:14:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Salinarchaeum
## 2023-03-15 20:14:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Aquimarina
## 2023-03-15 20:14:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Pseudolabrys
## 2023-03-15 20:14:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudovibrio
## 2023-03-15 20:14:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Hydrogenibacillus
## 2023-03-15 20:14:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Leuconostocaceae.g__Weissella
## 2023-03-15 20:14:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Teredinibacter
## 2023-03-15 20:14:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.g__Candidatus_Azobacteroides
## 2023-03-15 20:14:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Kurthia
## 2023-03-15 20:14:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Thermocrispum
## 2023-03-15 20:14:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Nonlabens
## 2023-03-15 20:14:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Wolbachia
## 2023-03-15 20:14:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Microchaetaceae.g__Tolypothrix
## 2023-03-15 20:14:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.c__Spartobacteria.o__Chthoniobacterales.f__Chthoniobacteraceae.g__Chthoniobacter
## 2023-03-15 20:14:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Clostridioides
## 2023-03-15 20:14:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.g__Thermorudis
## 2023-03-15 20:14:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Micavibrio
## 2023-03-15 20:14:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Polyangiaceae.g__Chondromyces
## 2023-03-15 20:14:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Leuconostocaceae.g__Leuconostoc
## 2023-03-15 20:14:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Anaeromyxobacteraceae.g__Anaeromyxobacter
## 2023-03-15 20:14:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinomycetospora
## 2023-03-15 20:14:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cardiobacteriales.f__Cardiobacteriaceae.g__Dichelobacter
## 2023-03-15 20:14:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Nitrosomonadales.f__Nitrosomonadaceae.g__Nitrosospira
## 2023-03-15 20:14:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Candidatus_Stoquefichus
## 2023-03-15 20:14:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Arenimonas
## 2023-03-15 20:14:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Prauserella
## 2023-03-15 20:14:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Paludibacterium
## 2023-03-15 20:14:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Gulosibacter
## 2023-03-15 20:14:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Sandarakinorhabdus
## 2023-03-15 20:14:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Opitutales.f__Opitutaceae.g__Cephaloticoccus
## 2023-03-15 20:14:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Eggerthella
## 2023-03-15 20:14:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zhouia
## 2023-03-15 20:14:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Magnetospira
## 2023-03-15 20:14:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Vitellibacter
## 2023-03-15 20:14:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Johnsonella
## 2023-03-15 20:14:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Fictibacillus
## 2023-03-15 20:14:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Acidimicrobium
## 2023-03-15 20:14:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Luteibacter
## 2023-03-15 20:14:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Colwellia
## 2023-03-15 20:14:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Neptunomonas
## 2023-03-15 20:14:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Myroides
## 2023-03-15 20:14:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Spirochaetaceae.g__Treponema
## 2023-03-15 20:14:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Thermonemataceae.g__Thermonema
## 2023-03-15 20:15:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.g__Acidibacillus
## 2023-03-15 20:15:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobiaceae.g__Haloferula
## 2023-03-15 20:15:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Alkaliflexus
## 2023-03-15 20:15:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Senegalimassilia
## 2023-03-15 20:15:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Halothece
## 2023-03-15 20:15:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Geobacteraceae.g__Geoalkalibacter
## 2023-03-15 20:15:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Aeromonas
## 2023-03-15 20:15:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Sphaerotilus
## 2023-03-15 20:15:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Neorickettsia
## 2023-03-15 20:15:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Viridibacillus
## 2023-03-15 20:15:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Mannheimia
## 2023-03-15 20:15:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Jiangellales.f__Jiangellaceae.g__Jiangella
## 2023-03-15 20:15:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Olleya
## 2023-03-15 20:15:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Acidobacteria.c__Solibacteres.o__Solibacterales.f__Solibacteraceae.g__Candidatus_Solibacter
## 2023-03-15 20:15:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Kinetoplastibacterium
## 2023-03-15 20:15:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseovarius
## 2023-03-15 20:15:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Thauera
## 2023-03-15 20:15:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseivivax
## 2023-03-15 20:15:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Dechloromonas
## 2023-03-15 20:15:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Caulobacterales.f__Caulobacteraceae.g__Phenylobacterium
## 2023-03-15 20:15:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Thermococcus
## 2023-03-15 20:15:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Wenxinia
## 2023-03-15 20:15:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Faecalicoccus
## 2023-03-15 20:15:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Emticicia
## 2023-03-15 20:15:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Polydnaviridae.g__Ichnovirus
## 2023-03-15 20:15:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sneathiellales.f__Sneathiellaceae.g__Sneathiella
## 2023-03-15 20:15:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Mobilicoccus
## 2023-03-15 20:15:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Gimesia
## 2023-03-15 20:15:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Paenirhodobacter
## 2023-03-15 20:15:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Varicellovirus
## 2023-03-15 20:15:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Porticoccaceae.g__Porticoccus
## 2023-03-15 20:15:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Poxviridae.g__Capripoxvirus
## 2023-03-15 20:15:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Nesiotobacter
## 2023-03-15 20:15:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Eikenella
## 2023-03-15 20:15:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Methylibium
## 2023-03-15 20:15:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhizobiaceae.g__Neorhizobium
## 2023-03-15 20:15:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Marinilabilia
## 2023-03-15 20:15:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Capnocytophaga
## 2023-03-15 20:15:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Polynucleobacter
## 2023-03-15 20:15:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Oceanibaculum
## 2023-03-15 20:15:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methanosarcinaceae.g__Methanosarcina
## 2023-03-15 20:15:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Mitsuokella
## 2023-03-15 20:15:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Cytophaga
## 2023-03-15 20:15:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Ferrimicrobium
## 2023-03-15 20:15:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Agrococcus
## 2023-03-15 20:15:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Saccharibacter
## 2023-03-15 20:15:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Nitrospirae.c__Nitrospira.o__Nitrospirales.f__Nitrospiraceae.g__Candidatus_Magnetobacterium
## 2023-03-15 20:15:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Aliterella
## 2023-03-15 20:15:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Flavihumibacter
## 2023-03-15 20:15:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Lyngbya
## 2023-03-15 20:15:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophaceae.g__Desulfobacca
## 2023-03-15 20:15:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Kosakonia
## 2023-03-15 20:15:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.o__Methylacidiphilales.f__Methylacidiphilaceae.g__Methylacidiphilum
## 2023-03-15 20:15:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Haematospirillum
## 2023-03-15 20:15:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Holosporaceae.g__Holospora
## 2023-03-15 20:15:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Pirellula
## 2023-03-15 20:15:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Simplexvirus
## 2023-03-15 20:15:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Methylopila
## 2023-03-15 20:15:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Hamadaea
## 2023-03-15 20:15:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Citromicrobium
## 2023-03-15 20:15:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Fodinicurvata
## 2023-03-15 20:15:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Lentimicrobiaceae.g__Lentimicrobium
## 2023-03-15 20:15:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thioflavicoccus
## 2023-03-15 20:15:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Photobacterium
## 2023-03-15 20:15:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Trichormus
## 2023-03-15 20:15:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Arcticibacter
## 2023-03-15 20:15:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Spirosoma
## 2023-03-15 20:15:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Skermanella
## 2023-03-15 20:15:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Riemerella
## 2023-03-15 20:15:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Dokdonella
## 2023-03-15 20:15:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Sanguibacteroides
## 2023-03-15 20:15:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Thermotogaceae.g__Thermotoga
## 2023-03-15 20:15:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Salimicrobium
## 2023-03-15 20:15:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Weeksella
## 2023-03-15 20:15:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Mucilaginibacter
## 2023-03-15 20:15:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Leptotrichiaceae.g__Sebaldella
## 2023-03-15 20:15:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylosarcina
## 2023-03-15 20:15:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Methylocella
## 2023-03-15 20:15:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Methanomassiliicoccales.f__Methanomassiliicoccaceae.g__Candidatus_Methanoplasma
## 2023-03-15 20:15:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Thiorhodospira
## 2023-03-15 20:15:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Nakamurellales.f__Nakamurellaceae.g__Nakamurella
## 2023-03-15 20:15:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylobacteriaceae.g__Meganema
## 2023-03-15 20:15:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Tenacibaculum
## 2023-03-15 20:15:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Sciscionella
## 2023-03-15 20:15:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfobulbus
## 2023-03-15 20:15:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Paucibacter
## 2023-03-15 20:15:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bradyrhizobiaceae.g__Rhodopseudomonas
## 2023-03-15 20:15:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Thermoactinomycetaceae.g__Thermoactinomyces
## 2023-03-15 20:15:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Phycodnaviridae.g__Phaeovirus
## 2023-03-15 20:15:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Gemmatimonadetes.c__Gemmatimonadetes.o__Gemmatimonadales.f__Gemmatimonadaceae.g__Gemmatirosa
## 2023-03-15 20:15:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Saccharibacillus
## 2023-03-15 20:15:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Knoellia
## 2023-03-15 20:15:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Flexithrix
## 2023-03-15 20:15:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Bellilinea
## 2023-03-15 20:15:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.g__Candidatus_Hepatobacter
## 2023-03-15 20:15:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Hyphomicrobium
## 2023-03-15 20:15:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.g__Emaravirus
## 2023-03-15 20:15:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfovibrionaceae.g__Lawsonia
## 2023-03-15 20:15:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Candidatus_Arthromitus
## 2023-03-15 20:15:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Hydrogenivirga
## 2023-03-15 20:15:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Haliscomenobacter
## 2023-03-15 20:15:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Microtetraspora
## 2023-03-15 20:15:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Rhizobacter
## 2023-03-15 20:15:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Gracilibacillus
## 2023-03-15 20:15:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Spiribacter
## 2023-03-15 20:15:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Psychroflexus
## 2023-03-15 20:15:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Leifsonia
## 2023-03-15 20:15:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Pseudomonadaceae.g__Oblitimonas
## 2023-03-15 20:15:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Commensalibacter
## 2023-03-15 20:15:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Rhodopirellula
## 2023-03-15 20:15:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Marivirga
## 2023-03-15 20:15:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Halocynthiibacter
## 2023-03-15 20:15:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Agreia
## 2023-03-15 20:15:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Frankiales.f__Sporichthyaceae.g__Sporichthya
## 2023-03-15 20:15:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Lebetimonas
## 2023-03-15 20:15:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Histophilus
## 2023-03-15 20:15:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfovibrionaceae.g__Bilophila
## 2023-03-15 20:15:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Blochmannia
## 2023-03-15 20:15:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Herpesvirales.f__Alloherpesviridae.g__Batrachovirus
## 2023-03-15 20:15:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Acetohalobium
## 2023-03-15 20:15:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Yersinia
## 2023-03-15 20:15:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Polyangiaceae.g__Sorangium
## 2023-03-15 20:15:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Lacinutrix
## 2023-03-15 20:15:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Rubrivivax
## 2023-03-15 20:15:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanococci.o__Methanococcales.f__Methanococcaceae.g__Methanothermococcus
## 2023-03-15 20:15:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Catabacteriaceae.g__Catabacter
## 2023-03-15 20:15:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Buttiauxella
## 2023-03-15 20:15:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfobacterium
## 2023-03-15 20:15:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Heliobacteriaceae.g__Heliobacterium
## 2023-03-15 20:15:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halorubrum
## 2023-03-15 20:15:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Geofilum
## 2023-03-15 20:15:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Odoribacteraceae.g__Odoribacter
## 2023-03-15 20:15:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfosarcina
## 2023-03-15 20:15:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Gulbenkiania
## 2023-03-15 20:15:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Regiella
## 2023-03-15 20:15:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Lewinella
## 2023-03-15 20:15:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Kiloniellales.f__Kiloniellaceae.g__Kiloniella
## 2023-03-15 20:15:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Hymenobacter
## 2023-03-15 20:15:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Saccharomonospora
## 2023-03-15 20:15:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Thermobrachium
## 2023-03-15 20:15:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Methylophaga
## 2023-03-15 20:15:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Pseudobacteroides
## 2023-03-15 20:15:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Microbispora
## 2023-03-15 20:15:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Nesterenkonia
## 2023-03-15 20:15:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Sutterellaceae.g__Sutterella
## 2023-03-15 20:15:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Slackia
## 2023-03-15 20:15:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Symbiobacteriaceae.g__Symbiobacterium
## 2023-03-15 20:15:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Oceanibulbus
## 2023-03-15 20:15:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobia_subdivision_3.g__Pedosphaera
## 2023-03-15 20:15:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Gloeocapsa
## 2023-03-15 20:15:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhizobiaceae.g__Agrobacterium
## 2023-03-15 20:15:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Xanthobacter
## 2023-03-15 20:15:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Xylophilus
## 2023-03-15 20:15:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Paraburkholderia
## 2023-03-15 20:15:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Cycloclasticus
## 2023-03-15 20:15:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Flaviviridae.g__Pestivirus
## 2023-03-15 20:15:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomicrobium
## 2023-03-15 20:15:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Gemmata
## 2023-03-15 20:15:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Schleiferiaceae.g__Schleiferia
## 2023-03-15 20:15:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Vagococcus
## 2023-03-15 20:15:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Catenulisporales.f__Actinospicaceae.g__Actinospica
## 2023-03-15 20:15:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Acidihalobacter
## 2023-03-15 20:15:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Cellulosilyticum
## 2023-03-15 20:15:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Pseudoalteromonadaceae.g__Pseudoalteromonas
## 2023-03-15 20:15:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.g__Elioraea
## 2023-03-15 20:15:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Carnimonas
## 2023-03-15 20:15:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Kineosphaera
## 2023-03-15 20:15:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Herpesvirales.f__Alloherpesviridae.g__Ictalurivirus
## 2023-03-15 20:15:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Pleomorphomonas
## 2023-03-15 20:15:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Amorphus
## 2023-03-15 20:15:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.g__Anaerosporomusa
## 2023-03-15 20:15:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Thermosulfurimonas
## 2023-03-15 20:15:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Vulgatibacteraceae.g__Vulgatibacter
## 2023-03-15 20:15:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Defluviimonas
## 2023-03-15 20:15:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Criblamydiaceae.g__Criblamydia
## 2023-03-15 20:15:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Waikavirus
## 2023-03-15 20:15:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Retroviridae.g__Alpharetrovirus
## 2023-03-15 20:15:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Campylobacteraceae.g__Campylobacter
## 2023-03-15 20:15:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Orenia
## 2023-03-15 20:15:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Circoviridae.g__Circovirus
## 2023-03-15 20:15:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Catonella
## 2023-03-15 20:15:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Segetibacter
## 2023-03-15 20:15:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Oxalobacteraceae.g__Herminiimonas
## 2023-03-15 20:15:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zobellia
## 2023-03-15 20:15:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Plantibacter
## 2023-03-15 20:15:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Sediminibacterium
## 2023-03-15 20:15:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Tetrasphaera
## 2023-03-15 20:15:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseobacter
## 2023-03-15 20:15:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Rufibacter
## 2023-03-15 20:15:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Ventosimonadaceae.g__Ventosimonas
## 2023-03-15 20:15:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Solibacillus
## 2023-03-15 20:15:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylobacteriaceae.g__Microvirga
## 2023-03-15 20:15:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Listeriaceae.g__Listeria
## 2023-03-15 20:15:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Acidobacteria.c__Holophagae.o__Holophagales.f__Holophagaceae.g__Geothrix
## 2023-03-15 20:15:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophobacteraceae.g__Syntrophobacter
## 2023-03-15 20:15:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Paraglaciecola
## 2023-03-15 20:15:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Falsirhodobacter
## 2023-03-15 20:15:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Jonquetella
## 2023-03-15 20:15:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Lampropedia
## 2023-03-15 20:15:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Apibacter
## 2023-03-15 20:15:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Luteimonas
## 2023-03-15 20:15:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.g__Higrevirus
## 2023-03-15 20:15:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfomicrobiaceae.g__Desulfomicrobium
## 2023-03-15 20:15:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Oribacterium
## 2023-03-15 20:15:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Kamptonema
## 2023-03-15 20:15:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Salinisphaerales.f__Salinisphaeraceae.g__Salinisphaera
## 2023-03-15 20:15:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Tamlana
## 2023-03-15 20:15:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobiaceae.g__Verrucomicrobium
## 2023-03-15 20:15:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Hamiltonella
## 2023-03-15 20:15:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Fervidicella
## 2023-03-15 20:15:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.g__Fangia
## 2023-03-15 20:15:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Bifidobacteriales.f__Bifidobacteriaceae.g__Scardovia
## 2023-03-15 20:15:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Thermomonosporaceae.g__Spirillospora
## 2023-03-15 20:15:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Fervidobacteriaceae.g__Thermosipho
## 2023-03-15 20:15:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Thermobacillus
## 2023-03-15 20:15:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Actinoplanes
## 2023-03-15 20:15:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanothermaceae.g__Methanothermus
## 2023-03-15 20:15:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Salivirus
## 2023-03-15 20:15:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Pseudonocardia
## 2023-03-15 20:15:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Petrotogales.g__Defluviitoga
## 2023-03-15 20:15:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiocapsa
## 2023-03-15 20:15:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Virgaviridae.g__Tobamovirus
## 2023-03-15 20:15:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Jonesiaceae.g__Jonesia
## 2023-03-15 20:15:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Spo1virus
## 2023-03-15 20:15:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Belliella
## 2023-03-15 20:15:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Gillisia
## 2023-03-15 20:15:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Planctomyces
## 2023-03-15 20:15:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Chelatococcus
## 2023-03-15 20:15:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Poxviridae.g__Betaentomopoxvirus
## 2023-03-15 20:15:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiorhodovibrio
## 2023-03-15 20:15:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Rhodobacter
## 2023-03-15 20:15:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Persicobacteraceae.g__Persicobacter
## 2023-03-15 20:15:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Oceanimonas
## 2023-03-15 20:15:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halapricum
## 2023-03-15 20:15:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Psychromonadaceae.g__Psychromonas
## 2023-03-15 20:15:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Carnobacteriaceae.g__Jeotgalibaca
## 2023-03-15 20:15:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Aurantimonadaceae.g__Martelella
## 2023-03-15 20:15:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Finegoldia
## 2023-03-15 20:15:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Advenella
## 2023-03-15 20:15:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Imtechella
## 2023-03-15 20:15:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Dehalococcoidia.o__Dehalococcoidales.f__Dehalococcoidaceae.g__Dehalococcoides
## 2023-03-15 20:15:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Bafinivirus
## 2023-03-15 20:15:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Promicromonospora
## 2023-03-15 20:15:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Adenoviridae.g__Aviadenovirus
## 2023-03-15 20:15:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Thermales.f__Thermaceae.g__Meiothermus
## 2023-03-15 20:15:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Blastochloris
## 2023-03-15 20:15:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Planktothrix
## 2023-03-15 20:15:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Cobetia
## 2023-03-15 20:15:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Inquilinus
## 2023-03-15 20:15:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Moritellaceae.g__Moritella
## 2023-03-15 20:15:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Gorillibacterium
## 2023-03-15 20:15:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Staphylococcaceae.g__Jeotgalicoccus
## 2023-03-15 20:15:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Carnobacteriaceae.g__Allofustis
## 2023-03-15 20:15:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Tymovirales.f__Tymoviridae.g__Tymovirus
## 2023-03-15 20:15:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Rubellimicrobium
## 2023-03-15 20:15:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Blautia
## 2023-03-15 20:15:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Pontibacillus
## 2023-03-15 20:15:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Fibrella
## 2023-03-15 20:15:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Coprobacillus
## 2023-03-15 20:15:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Sandaracinaceae.g__Sandaracinus
## 2023-03-15 20:15:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Caldiserica.c__Caldisericia.o__Caldisericales.f__Caldisericaceae.g__Caldisericum
## 2023-03-15 20:15:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Paracaedibacteraceae.g__Candidatus_Paracaedibacter
## 2023-03-15 20:15:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Cyanothece
## 2023-03-15 20:15:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Xylella
## 2023-03-15 20:15:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Epulopiscium
## 2023-03-15 20:15:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Candidatus_Cloacimonetes.g__Candidatus_Cloacimonas
## 2023-03-15 20:15:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Sanguibacteraceae.g__Sanguibacter
## 2023-03-15 20:15:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natronococcus
## 2023-03-15 20:15:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Aliivibrio
## 2023-03-15 20:15:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natronolimnobius
## 2023-03-15 20:15:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thioclava
## 2023-03-15 20:15:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Moraxellaceae.g__Perlucidibaca
## 2023-03-15 20:15:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Waddliaceae.g__Waddlia
## 2023-03-15 20:15:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pantoea
## 2023-03-15 20:15:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Sodalis
## 2023-03-15 20:15:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanococci.o__Methanococcales.f__Methanococcaceae.g__Methanococcus
## 2023-03-15 20:15:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Pandoraea
## 2023-03-15 20:15:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Raoultella
## 2023-03-15 20:15:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Cryptobacterium
## 2023-03-15 20:15:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Phycicoccus
## 2023-03-15 20:15:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Acidaminococcales.f__Acidaminococcaceae.g__Succinispira
## 2023-03-15 20:15:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Chlorobium
## 2023-03-15 20:15:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Maribacter
## 2023-03-15 20:15:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Hylemonella
## 2023-03-15 20:15:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Robiginitomaculum
## 2023-03-15 20:15:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Rhodomicrobium
## 2023-03-15 20:15:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfovermiculus
## 2023-03-15 20:15:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Mardivirus
## 2023-03-15 20:15:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Candidatus_Evansia
## 2023-03-15 20:15:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Pararhodospirillum
## 2023-03-15 20:15:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.g__Candidatus_Sulcia
## 2023-03-15 20:15:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Gilvimarinus
## 2023-03-15 20:15:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Trueperella
## 2023-03-15 20:15:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylocaldum
## 2023-03-15 20:15:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Stenoxybacter
## 2023-03-15 20:15:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Fibrobacteres.c__Chitinispirillia.o__Chitinispirillales.f__Chitinispirillaceae.g__Chitinispirillum
## 2023-03-15 20:15:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Rhodothermaeota.c__Balneolia.o__Balneolales.f__Balneolaceae.g__Gracilimonas
## 2023-03-15 20:15:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Hepatovirus
## 2023-03-15 20:15:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Aneurinibacillus
## 2023-03-15 20:15:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Cylindrospermum
## 2023-03-15 20:15:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Partitiviridae.g__Betapartitivirus
## 2023-03-15 20:15:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Flavonifractor
## 2023-03-15 20:15:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Lachnoanaerobaculum
## 2023-03-15 20:15:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Entomoplasmatales.f__Entomoplasmataceae.g__Mesoplasma
## 2023-03-15 20:15:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Brachyspirales.f__Brachyspiraceae.g__Brachyspira
## 2023-03-15 20:15:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Rhodoplanes
## 2023-03-15 20:15:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Providencia
## 2023-03-15 20:15:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Acidaminococcales.f__Acidaminococcaceae.g__Phascolarctobacterium
## 2023-03-15 20:15:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Ornithobacterium
## 2023-03-15 20:15:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Terrabacter
## 2023-03-15 20:15:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Veillonellales.f__Veillonellaceae.g__Dialister
## 2023-03-15 20:15:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiales_Family_XVII._Incertae_Sedis.g__Thermaerobacter
## 2023-03-15 20:15:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Prosthecomicrobium
## 2023-03-15 20:15:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bartonellaceae.g__Bartonella
## 2023-03-15 20:15:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Mycoplasmatales.f__Mycoplasmataceae.g__Ureaplasma
## 2023-03-15 20:15:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfobacter
## 2023-03-15 20:15:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Demequinaceae.g__Lysinimicrobium
## 2023-03-15 20:15:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Mycetocola
## 2023-03-15 20:15:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halosimplex
## 2023-03-15 20:15:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Geminicoccus
## 2023-03-15 20:15:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Sinomonas
## 2023-03-15 20:15:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanococci.o__Methanococcales.f__Methanocaldococcaceae.g__Methanocaldococcus
## 2023-03-15 20:15:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Cellulosimicrobium
## 2023-03-15 20:15:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Entomoplasmatales.f__Entomoplasmataceae.g__Entomoplasma
## 2023-03-15 20:15:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Leuconostocaceae.g__Fructobacillus
## 2023-03-15 20:15:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Acidobacteria.c__Blastocatellia.g__Pyrinomonas
## 2023-03-15 20:15:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Gelidibacter
## 2023-03-15 20:15:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Chlorobaculum
## 2023-03-15 20:15:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methanosarcinaceae.g__Methanomethylovorans
## 2023-03-15 20:15:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Veillonellales.f__Veillonellaceae.g__Veillonella
## 2023-03-15 20:15:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Tyzzerella
## 2023-03-15 20:15:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Astroviridae.g__Mamastrovirus
## 2023-03-15 20:15:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Baculoviridae.g__Alphabaculovirus
## 2023-03-15 20:15:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__T7likevirus
## 2023-03-15 20:15:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Opitutales.f__Opitutaceae.g__Opitutus
## 2023-03-15 20:15:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Acetobacter
## 2023-03-15 20:15:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Kosmotogales.f__Kosmotogaceae.g__Kosmotoga
## 2023-03-15 20:15:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Thermovirga
## 2023-03-15 20:15:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Aquitalea
## 2023-03-15 20:15:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Pilimelia
## 2023-03-15 20:15:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Marinobacterium
## 2023-03-15 20:15:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Mobiluncus
## 2023-03-15 20:15:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Desulfosporosinus
## 2023-03-15 20:15:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Catenuloplanes
## 2023-03-15 20:15:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Frigoribacterium
## 2023-03-15 20:15:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Pontibacter
## 2023-03-15 20:15:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Bibersteinia
## 2023-03-15 20:15:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinokineospora
## 2023-03-15 20:15:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Schlesneria
## 2023-03-15 20:15:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Candidatus_Endolissoclinum
## 2023-03-15 20:15:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Stomatobaculum
## 2023-03-15 20:15:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Thalassospira
## 2023-03-15 20:15:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Caenimonas
## 2023-03-15 20:15:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Nitratireductor
## 2023-03-15 20:15:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Arsukibacterium
## 2023-03-15 20:15:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Citricoccus
## 2023-03-15 20:15:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Alicyclobacillaceae.g__Kyrpidia
## 2023-03-15 20:15:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Crocosphaera
## 2023-03-15 20:15:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Pseudacidovorax
## 2023-03-15 20:15:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiales_Family_XIII._Incertae_Sedis.g__Casaltella
## 2023-03-15 20:15:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Paludibacter
## 2023-03-15 20:15:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Roseateles
## 2023-03-15 20:15:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Haematobacter
## 2023-03-15 20:15:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Acidobacteria.g__Thermoanaerobaculum
## 2023-03-15 20:15:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Sicinivirus
## 2023-03-15 20:15:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Rickettsiaceae.g__Orientia
## 2023-03-15 20:15:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Moorella
## 2023-03-15 20:15:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Caldalkalibacillus
## 2023-03-15 20:15:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Anaerotruncus
## 2023-03-15 20:15:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Halalkalibacillus
## 2023-03-15 20:15:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Ornithinimicrobium
## 2023-03-15 20:15:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Terrimonas
## 2023-03-15 20:15:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Sporomusaceae.g__Acetonema
## 2023-03-15 20:15:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Simonsiella
## 2023-03-15 20:15:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Thiomicrospira
## 2023-03-15 20:15:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Achromobacter
## 2023-03-15 20:15:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Syntrophomonadaceae.g__Syntrophomonas
## 2023-03-15 20:15:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylotenera
## 2023-03-15 20:15:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Actinotalea
## 2023-03-15 20:15:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Haemophilus
## 2023-03-15 20:15:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Saccharicrinis
## 2023-03-15 20:15:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Propionicicella
## 2023-03-15 20:15:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Chloroflexia.o__Chloroflexales.f__Chloroflexaceae.g__Chloroflexus
## 2023-03-15 20:15:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Propionibacteriaceae.g__Aestuariimicrobium
## 2023-03-15 20:15:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Glycomycetales.f__Glycomycetaceae.g__Stackebrandtia
## 2023-03-15 20:15:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Alysiella
## 2023-03-15 20:15:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Poxviridae.g__Orthopoxvirus
## 2023-03-15 20:15:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Moorea
## 2023-03-15 20:15:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Xenorhabdus
## 2023-03-15 20:15:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Nodularia
## 2023-03-15 20:15:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Streptosporangium
## 2023-03-15 20:15:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Shigella
## 2023-03-15 20:15:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.g__Exiguobacterium
## 2023-03-15 20:15:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Sulfurimonas
## 2023-03-15 20:15:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Azohydromonas
## 2023-03-15 20:15:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Midichloriaceae.g__Candidatus_Midichloria
## 2023-03-15 20:15:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Geodermatophilales.f__Geodermatophilaceae.g__Blastococcus
## 2023-03-15 20:15:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Planctomycetes.c__Phycisphaerae.o__Phycisphaerales.f__Phycisphaeraceae.g__Phycisphaera
## 2023-03-15 20:15:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Mycobacteriaceae.g__Amycolicicoccus
## 2023-03-15 20:15:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Rhodoferax
## 2023-03-15 20:15:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Alteromonas
## 2023-03-15 20:15:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Niveispirillum
## 2023-03-15 20:15:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Leclercia
## 2023-03-15 20:15:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Caldimonas
## 2023-03-15 20:15:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Rahnella
## 2023-03-15 20:15:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Pasteurella
## 2023-03-15 20:15:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Dactylosporangium
## 2023-03-15 20:15:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Oscillatoria
## 2023-03-15 20:15:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Klebsiella
## 2023-03-15 20:15:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Nafulsella
## 2023-03-15 20:15:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Nannocystaceae.g__Plesiocystis
## 2023-03-15 20:15:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Bdellovibrionales.f__Bdellovibrionaceae.g__Bdellovibrio
## 2023-03-15 20:15:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Neisseria
## 2023-03-15 20:15:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Euryhalocaulis
## 2023-03-15 20:15:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Actibacterium
## 2023-03-15 20:15:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Nepovirus
## 2023-03-15 20:15:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ruegeria
## 2023-03-15 20:15:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Segniliparaceae.g__Segniliparus
## 2023-03-15 20:15:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Cronobacter
## 2023-03-15 20:15:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Acetobacterium
## 2023-03-15 20:15:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Oceanobacillus
## 2023-03-15 20:15:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Halieaceae.g__Halioglobus
## 2023-03-15 20:15:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Pimelobacter
## 2023-03-15 20:15:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Oxalobacteraceae.g__Collimonas
## 2023-03-15 20:15:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Cytomegalovirus
## 2023-03-15 20:15:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natrialba
## 2023-03-15 20:15:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Pseudoclavibacter
## 2023-03-15 20:15:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Xenophilus
## 2023-03-15 20:15:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Staphylococcaceae.g__Salinicoccus
## 2023-03-15 20:15:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Caballeronia
## 2023-03-15 20:15:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Lelliottia
## 2023-03-15 20:15:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Sporosarcina
## 2023-03-15 20:15:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Aminobacter
## 2023-03-15 20:15:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Erythrobacteraceae.g__Porphyrobacter
## 2023-03-15 20:15:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Mesoflavibacter
## 2023-03-15 20:15:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Paeniclostridium
## 2023-03-15 20:15:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptomycetales.f__Streptomycetaceae.g__Kitasatospora
## 2023-03-15 20:15:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Rivulariaceae.g__Calothrix
## 2023-03-15 20:15:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Sphingobacterium
## 2023-03-15 20:15:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillales_Family_X._Incertae_Sedis.g__Thermicanus
## 2023-03-15 20:15:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Orbales.f__Orbaceae.g__Gilliamella
## 2023-03-15 20:15:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Fusobacteriaceae.g__Fusobacterium
## 2023-03-15 20:15:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Kordia
## 2023-03-15 20:15:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Rhadinovirus
## 2023-03-15 20:15:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Cystobacteraceae.g__Hyalangium
## 2023-03-15 20:15:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Alicycliphilus
## 2023-03-15 20:15:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Anaplasma
## 2023-03-15 20:15:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Flammeovirga
## 2023-03-15 20:15:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Loktanella
## 2023-03-15 20:15:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Polyomaviridae.g__Polyomavirus
## 2023-03-15 20:15:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Anoxybacillus
## 2023-03-15 20:15:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Ehrlichia
## 2023-03-15 20:15:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Ascoviridae.g__Ascovirus
## 2023-03-15 20:15:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Serratia
## 2023-03-15 20:15:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Dysgonomonas
## 2023-03-15 20:15:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Amoebophilaceae.g__Candidatus_Cardinium
## 2023-03-15 20:15:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Arenibacter
## 2023-03-15 20:15:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Coleofasciculus
maaslin_PC_group_putative <- function_Maaslin2(df_ACC_filter_Plate_Center_Voom_SNM, "Putative_combined", "Temp/PC_group_putative")
## [1] "Warning: Deleting existing log file: Temp/PC_group_putative/maaslin2.log"
## 2023-03-15 20:15:46 INFO::Writing function arguments to log file
## 2023-03-15 20:15:46 INFO::Verifying options selected are valid
## 2023-03-15 20:15:46 INFO::Determining format of input files
## 2023-03-15 20:15:46 INFO::Input format is data samples as rows and metadata samples as rows
## 2023-03-15 20:15:46 INFO::Formula for random effects: expr ~ (1 | SEX) + (1 | Ethnicity_Race) + (1 | AGE) + (1 | Neoplasm_Status) + (1 | Clinical_Status_3_Mo_Post.Op) + (1 | Surgical_margin) + (1 | ATYPICAL_MITOTIC_FIGURES)
## 2023-03-15 20:15:46 INFO::Formula for fixed effects: expr ~  Putative_combined
## 2023-03-15 20:15:46 INFO::Filter data based on min abundance and min prevalence
## 2023-03-15 20:15:46 INFO::Total samples in data: 77
## 2023-03-15 20:15:46 INFO::Min samples required with min abundance for a feature not to be filtered: 0.000000
## 2023-03-15 20:15:46 INFO::Total filtered features: 9
## 2023-03-15 20:15:46 INFO::Filtered feature names from abundance and prevalence filtering: k__Viruses.f__Chrysoviridae.g__Chrysovirus, k__Viruses.f__Hytrosaviridae.g__Muscavirus, k__Viruses.f__Closteroviridae.g__Crinivirus, k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Nitrococcus, k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halomicrobium, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Azovibrio, k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Psychrobacillus, k__Bacteria.p__Thermotogae.c__Thermotogae.o__Petrotogales.g__Petrotoga, k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Aphanocapsa
## 2023-03-15 20:15:47 INFO::Total filtered features with variance filtering: 0
## 2023-03-15 20:15:47 INFO::Filtered feature names from variance filtering:
## 2023-03-15 20:15:47 INFO::Running selected normalization method: NONE
## 2023-03-15 20:15:47 INFO::Applying z-score to standardize continuous metadata
## 2023-03-15 20:15:47 INFO::Running selected transform method: NONE
## 2023-03-15 20:15:47 INFO::Running selected analysis method: LM
## 2023-03-15 20:15:47 INFO::Creating cluster of 6 R processes
## 2023-03-15 20:16:10 INFO::Counting total values for each feature
## 2023-03-15 20:16:10 WARNING::Deleting existing residuals file: Temp/PC_group_putative/residuals.rds
## 2023-03-15 20:16:10 INFO::Writing residuals to file Temp/PC_group_putative/residuals.rds
## 2023-03-15 20:16:10 WARNING::Deleting existing fitted file: Temp/PC_group_putative/fitted.rds
## 2023-03-15 20:16:10 INFO::Writing fitted values to file Temp/PC_group_putative/fitted.rds
## 2023-03-15 20:16:10 WARNING::Deleting existing ranef file: Temp/PC_group_putative/ranef.rds
## 2023-03-15 20:16:10 INFO::Writing extracted random effects to file Temp/PC_group_putative/ranef.rds
## 2023-03-15 20:16:10 INFO::Writing all results to file (ordered by increasing q-values): Temp/PC_group_putative/all_results.tsv
## 2023-03-15 20:16:10 INFO::Writing the significant results (those which are less than or equal to the threshold of 0.250000 ) to file (ordered by increasing q-values): Temp/PC_group_putative/significant_results.tsv
## 2023-03-15 20:16:10 INFO::Writing heatmap of significant results to file: Temp/PC_group_putative/heatmap.pdf
## Warning in xtfrm.data.frame(x): cannot xtfrm data frames
## [1] "There is not enough metadata in the associations to create a heatmap plot. Please review the associations in text output file."
## 2023-03-15 20:16:10 INFO::Writing association plots (one for each significant association) to output folder: Temp/PC_group_putative
## 2023-03-15 20:16:10 INFO::Plotting associations from most to least significant, grouped by metadata
## 2023-03-15 20:16:10 INFO::Plotting data for metadata number 1, Putative_combined
## 2023-03-15 20:16:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Poxviridae.g__Parapoxvirus
## 2023-03-15 20:16:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Bicaudaviridae.g__Bicaudavirus
## 2023-03-15 20:16:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Papillomaviridae.g__Betapapillomavirus
## 2023-03-15 20:16:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Bcep22likevirus
## 2023-03-15 20:16:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Poxviridae.g__Cervidpoxvirus
## 2023-03-15 20:16:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Lambdalikevirus
## 2023-03-15 20:16:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Anelloviridae.g__Alphatorquevirus
## 2023-03-15 20:16:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Barnyardlikevirus
## 2023-03-15 20:16:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Closteroviridae.g__Closterovirus
## 2023-03-15 20:16:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Fuselloviridae.g__Alphafusellovirus
## 2023-03-15 20:16:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Poxviridae.g__Avipoxvirus
## 2023-03-15 20:16:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Herpesvirales.f__Malacoherpesviridae.g__Ostreavirus
## 2023-03-15 20:16:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Tymovirales.f__Betaflexiviridae.g__Foveavirus
## 2023-03-15 20:16:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.g__Bacilladnavirus
## 2023-03-15 20:16:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Skunalikevirus
## 2023-03-15 20:16:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Phikzlikevirus
## 2023-03-15 20:16:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Orthomyxoviridae.g__Influenzavirus_C
## 2023-03-15 20:16:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phi29likevirus
## 2023-03-15 20:16:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Caulimoviridae.g__Cavemovirus
## 2023-03-15 20:16:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Anelloviridae.g__Betatorquevirus
## 2023-03-15 20:16:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Caulimoviridae.g__Caulimovirus
## 2023-03-15 20:16:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Bromoviridae.g__Alfamovirus
## 2023-03-15 20:16:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Sp6likevirus
## 2023-03-15 20:16:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Tymovirales.f__Alphaflexiviridae.g__Allexivirus
## 2023-03-15 20:16:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Parvoviridae.g__Ambidensovirus
## 2023-03-15 20:16:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Comovirus
## 2023-03-15 20:16:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.g__Polemovirus
## 2023-03-15 20:16:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Bromoviridae.g__Ilarvirus
## 2023-03-15 20:16:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Narnaviridae.g__Narnavirus
## 2023-03-15 20:16:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Totiviridae.g__Totivirus
## 2023-03-15 20:16:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Potyviridae.g__Tritimovirus
## 2023-03-15 20:16:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Papillomaviridae.g__Dyopipapillomavirus
## 2023-03-15 20:16:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Siccibacter
## 2023-03-15 20:16:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Methanomassiliicoccales.f__Methanomassiliicoccaceae.g__Candidatus_Methanomethylophilus
## 2023-03-15 20:16:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Nitritalea
## 2023-03-15 20:16:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Mangrovibacter
## 2023-03-15 20:16:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Natronomonas
## 2023-03-15 20:16:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfospira
## 2023-03-15 20:16:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Arenitalea
## 2023-03-15 20:16:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Thermoactinomycetaceae.g__Shimazuella
## 2023-03-15 20:16:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Basilea
## 2023-03-15 20:16:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Alicyclobacillaceae.g__Effusibacillus
## 2023-03-15 20:16:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitinibacter
## 2023-03-15 20:16:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Myxosarcina
## 2023-03-15 20:16:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudophaeobacter
## 2023-03-15 20:16:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Jeotgalibacillus
## 2023-03-15 20:16:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Zymobacter
## 2023-03-15 20:16:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Paeniglutamicibacter
## 2023-03-15 20:16:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halobellus
## 2023-03-15 20:16:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Cyclobacterium
## 2023-03-15 20:16:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Thioalkalimicrobium
## 2023-03-15 20:16:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Robiginitalea
## 2023-03-15 20:16:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Caldimicrobium
## 2023-03-15 20:16:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Actinopolymorpha
## 2023-03-15 20:16:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Candidatus_Phaeomarinobacter
## 2023-03-15 20:16:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Candidatus_Koribacter
## 2023-03-15 20:16:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Centipeda
## 2023-03-15 20:16:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Aliiroseovarius
## 2023-03-15 20:16:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Stigonematales.g__Mastigocladopsis
## 2023-03-15 20:16:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Thaumarchaeota.o__Nitrosopumilales.f__Nitrosopumilaceae.g__Candidatus_Nitrosoarchaeum
## 2023-03-15 20:16:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Wolinella
## 2023-03-15 20:16:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Thaumarchaeota.o__Nitrosopumilales.f__Nitrosopumilaceae.g__Nitrosopumilus
## 2023-03-15 20:16:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Marinococcus
## 2023-03-15 20:16:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfobacula
## 2023-03-15 20:16:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Thermincola
## 2023-03-15 20:16:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Shuttleworthia
## 2023-03-15 20:16:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Mesonia
## 2023-03-15 20:16:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Candidatus_Atelocyanobacterium
## 2023-03-15 20:16:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Coriobacterium
## 2023-03-15 20:16:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Solitalea
## 2023-03-15 20:16:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Bermanella
## 2023-03-15 20:16:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Rummeliibacillus
## 2023-03-15 20:16:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfurivibrio
## 2023-03-15 20:16:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Pseudobutyrivibrio
## 2023-03-15 20:16:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Kosmotogales.f__Kosmotogaceae.g__Mesotoga
## 2023-03-15 20:16:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Ardenticatenia.o__Ardenticatenales.f__Ardenticatenaceae.g__Ardenticatena
## 2023-03-15 20:16:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Halostagnicola
## 2023-03-15 20:16:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfonatronospira
## 2023-03-15 20:16:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Paucisalibacillus
## 2023-03-15 20:16:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Cloacibacillus
## 2023-03-15 20:16:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Thaumarchaeota.g__Candidatus_Nitrosotenuis
## 2023-03-15 20:16:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Subdoligranulum
## 2023-03-15 20:16:19 INFO::Creating boxplot for categorical data, Putative_combined vs contaminant1Harvard
## 2023-03-15 20:16:19 INFO::Creating boxplot for categorical data, Putative_combined vs contaminant2HarvardCanadaBaylorWashU
## 2023-03-15 20:16:19 INFO::Creating boxplot for categorical data, Putative_combined vs contaminant3AllSeqCenters
## 2023-03-15 20:16:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Circoviridae.g__Gyrovirus
## 2023-03-15 20:16:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__T5likevirus
## 2023-03-15 20:16:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__N4likevirus
## 2023-03-15 20:16:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Dielma
## 2023-03-15 20:16:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Halolactibacillus
## 2023-03-15 20:16:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanoregulaceae.g__Methanosphaerula
## 2023-03-15 20:16:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Sellimonas
## 2023-03-15 20:16:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phikmvlikevirus
## 2023-03-15 20:16:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Gramella
## 2023-03-15 20:16:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__L5likevirus
## 2023-03-15 20:16:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Candidatus_Methylopumilus
## 2023-03-15 20:16:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Nisaea
## 2023-03-15 20:16:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Coprobacter
## 2023-03-15 20:16:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Nocardiopsaceae.g__Streptomonospora
## 2023-03-15 20:16:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.o__Haloplasmatales.f__Haloplasmataceae.g__Haloplasma
## 2023-03-15 20:16:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Salimicrobium
## 2023-03-15 20:16:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Rudanella
## 2023-03-15 20:16:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Yokenella
## 2023-03-15 20:16:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylothermaceae.g__Methylohalobius
## 2023-03-15 20:16:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiocystis
## 2023-03-15 20:16:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Cryomorphaceae.g__Owenweeksia
## 2023-03-15 20:16:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Agarivorans
## 2023-03-15 20:16:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Youngiibacter
## 2023-03-15 20:16:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Obesumbacterium
## 2023-03-15 20:16:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.g__Aciduliprofundum
## 2023-03-15 20:16:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Alkalilimnicola
## 2023-03-15 20:16:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Legionellaceae.g__Tatlockia
## 2023-03-15 20:16:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Lampropedia
## 2023-03-15 20:16:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Stanieria
## 2023-03-15 20:16:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Mimiviridae.g__Mimivirus
## 2023-03-15 20:16:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Balneatrix
## 2023-03-15 20:16:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Moranella
## 2023-03-15 20:16:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Reinekea
## 2023-03-15 20:16:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Dactylococcopsis
## 2023-03-15 20:16:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Gallionella
## 2023-03-15 20:16:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Sulfuricurvum
## 2023-03-15 20:16:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Leeia
## 2023-03-15 20:16:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomarinum
## 2023-03-15 20:16:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Tolumonas
## 2023-03-15 20:16:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Marinagarivorans
## 2023-03-15 20:16:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Arhodomonas
## 2023-03-15 20:16:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Propionispira
## 2023-03-15 20:16:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiorhodococcus
## 2023-03-15 20:16:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halarchaeum
## 2023-03-15 20:16:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Pelodictyon
## 2023-03-15 20:16:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Chloroflexia.o__Chloroflexales.f__Oscillochloridaceae.g__Oscillochloris
## 2023-03-15 20:16:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.f__Competibacteraceae.g__Candidatus_Competibacter
## 2023-03-15 20:16:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halalkalicoccus
## 2023-03-15 20:16:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatirhabdium
## 2023-03-15 20:16:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Lymphocryptovirus
## 2023-03-15 20:16:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Halotalea
## 2023-03-15 20:16:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Microvirgula
## 2023-03-15 20:16:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Litoreibacter
## 2023-03-15 20:16:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Thermoactinomycetaceae.g__Thermoactinomyces
## 2023-03-15 20:16:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Gynuella
## 2023-03-15 20:16:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Marinimicrobium
## 2023-03-15 20:16:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatiglans
## 2023-03-15 20:16:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermodesulfobiaceae.g__Thermodesulfobium
## 2023-03-15 20:16:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Rhodothermaeota.c__Balneolia.o__Balneolales.f__Balneolaceae.g__Balneola
## 2023-03-15 20:16:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Poxviridae.g__Yatapoxvirus
## 2023-03-15 20:16:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Geovibrio
## 2023-03-15 20:16:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Candidatus_Photodesmus
## 2023-03-15 20:16:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.g__Methyloceanibacter
## 2023-03-15 20:16:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Bhargavaea
## 2023-03-15 20:16:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Flexilinea
## 2023-03-15 20:16:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Cyanobacterium
## 2023-03-15 20:16:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Nautilia
## 2023-03-15 20:16:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Poxviridae.g__Alphaentomopoxvirus
## 2023-03-15 20:16:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Herbiconiux
## 2023-03-15 20:16:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanococci.o__Methanococcales.f__Methanococcaceae.g__Methanothermococcus
## 2023-03-15 20:16:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Kandleria
## 2023-03-15 20:16:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Pseudaminobacter
## 2023-03-15 20:16:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Thaumarchaeota.c__Nitrososphaeria.o__Nitrososphaerales.f__Nitrososphaeraceae.g__Nitrososphaera
## 2023-03-15 20:16:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Basfia
## 2023-03-15 20:16:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Legionellaceae.g__Fluoribacter
## 2023-03-15 20:16:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Actinotignum
## 2023-03-15 20:16:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Cp220likevirus
## 2023-03-15 20:16:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Microcoleus
## 2023-03-15 20:16:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Ammonifex
## 2023-03-15 20:16:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Puniceibacterium
## 2023-03-15 20:16:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Acaricomes
## 2023-03-15 20:16:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Virgaviridae.g__Pecluvirus
## 2023-03-15 20:16:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Pyramidobacter
## 2023-03-15 20:16:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sedimentitalea
## 2023-03-15 20:16:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Jejuia
## 2023-03-15 20:16:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfotignum
## 2023-03-15 20:16:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Thermosynechococcus
## 2023-03-15 20:16:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Spirochaetaceae.g__Salinispira
## 2023-03-15 20:16:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Crocinitomicaceae.g__Crocinitomix
## 2023-03-15 20:16:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.o__Bacteroidetes_Order_II._Incertae_sedis.f__Rhodothermaceae.g__Salinibacter
## 2023-03-15 20:16:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Campylobacteraceae.g__Sulfurospirillum
## 2023-03-15 20:16:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Methylocapsa
## 2023-03-15 20:16:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Thioploca
## 2023-03-15 20:16:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinosynnema
## 2023-03-15 20:16:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Thermoplasmatales.f__Ferroplasmaceae.g__Ferroplasma
## 2023-03-15 20:16:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ketogulonicigenium
## 2023-03-15 20:16:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Hellea
## 2023-03-15 20:16:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Sphingorhabdus
## 2023-03-15 20:16:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Hepeviridae.g__Piscihepevirus
## 2023-03-15 20:16:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halanaeroarchaeum
## 2023-03-15 20:16:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oleiphilaceae.g__Oleiphilus
## 2023-03-15 20:16:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pragia
## 2023-03-15 20:16:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Aurantimonadaceae.g__Fulvimarina
## 2023-03-15 20:16:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Franconibacter
## 2023-03-15 20:16:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Shimwellia
## 2023-03-15 20:16:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Riesia
## 2023-03-15 20:16:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Joostella
## 2023-03-15 20:16:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Starkeya
## 2023-03-15 20:16:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Marinilabilia
## 2023-03-15 20:16:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thalassobium
## 2023-03-15 20:16:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Fusobacteriaceae.g__Cetobacterium
## 2023-03-15 20:16:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Glutamicibacter
## 2023-03-15 20:16:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Cryocola
## 2023-03-15 20:16:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.g__Candidatus_Babela
## 2023-03-15 20:16:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Bdellovibrionales.f__Halobacteriovoraceae.g__Halobacteriovorax
## 2023-03-15 20:16:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Fibrobacteres.c__Chitinispirillia.o__Chitinispirillales.f__Chitinispirillaceae.g__Chitinispirillum
## 2023-03-15 20:16:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylococcus
## 2023-03-15 20:16:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Amphibacillus
## 2023-03-15 20:16:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Arenaviridae.g__Arenavirus
## 2023-03-15 20:16:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.g__Nitratifractor
## 2023-03-15 20:16:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Aestuariivita
## 2023-03-15 20:16:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.o__Bacteroidetes_Order_II._Incertae_sedis.f__Rhodothermaceae.g__Salisaeta
## 2023-03-15 20:16:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Azonexus
## 2023-03-15 20:16:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Hydrogenobacter
## 2023-03-15 20:16:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Tunalikevirus
## 2023-03-15 20:16:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Thermopetrobacter
## 2023-03-15 20:16:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Oleispira
## 2023-03-15 20:16:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Paraoerskovia
## 2023-03-15 20:16:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Caliciviridae.g__Vesivirus
## 2023-03-15 20:16:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prevotellaceae.g__Hallella
## 2023-03-15 20:16:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Thermodesulfatator
## 2023-03-15 20:16:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Isosphaeraceae.g__Isosphaera
## 2023-03-15 20:16:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfonatronovibrio
## 2023-03-15 20:16:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Candidatus_Neoehrlichia
## 2023-03-15 20:16:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Lentibacillus
## 2023-03-15 20:16:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Chitinophaga
## 2023-03-15 20:16:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Aeribacillus
## 2023-03-15 20:16:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Archaeoglobi.o__Archaeoglobales.f__Archaeoglobaceae.g__Geoglobus
## 2023-03-15 20:16:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Wolbachia
## 2023-03-15 20:16:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Microchaetaceae.g__Microchaete
## 2023-03-15 20:16:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Derxia
## 2023-03-15 20:16:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Spiribacter
## 2023-03-15 20:16:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Capnocytophaga
## 2023-03-15 20:16:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Desulfuromonadaceae.g__Desulfuromonas
## 2023-03-15 20:16:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Opitutales.f__Opitutaceae.g__Cephaloticoccus
## 2023-03-15 20:16:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Aquamavirus
## 2023-03-15 20:16:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Lunatimonas
## 2023-03-15 20:16:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Mimiviridae.g__Cafeteriavirus
## 2023-03-15 20:16:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudorhodobacter
## 2023-03-15 20:16:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Acidobacterium
## 2023-03-15 20:16:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Pleurocapsa
## 2023-03-15 20:16:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Silanimonas
## 2023-03-15 20:16:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Sediminibacter
## 2023-03-15 20:16:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Thiolapillus
## 2023-03-15 20:16:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Luteibacter
## 2023-03-15 20:16:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.f__Leptospiraceae.g__Leptonema
## 2023-03-15 20:16:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Gallaecimonas
## 2023-03-15 20:16:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Coprococcus
## 2023-03-15 20:16:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bartonellaceae.g__Bartonella
## 2023-03-15 20:16:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Akkermansiaceae.g__Akkermansia
## 2023-03-15 20:16:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Prochlorales.f__Prochlorotrichaceae.g__Prochlorothrix
## 2023-03-15 20:16:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Caulobacterales.f__Caulobacteraceae.g__Woodsholea
## 2023-03-15 20:16:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Simiduia
## 2023-03-15 20:16:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Thaumarchaeota.g__Candidatus_Nitrosopelagicus
## 2023-03-15 20:16:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Lebetimonas
## 2023-03-15 20:16:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Synergistes
## 2023-03-15 20:16:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Acidocella
## 2023-03-15 20:16:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Nodosilinea
## 2023-03-15 20:16:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Mucispirillum
## 2023-03-15 20:16:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Marvinbryantia
## 2023-03-15 20:16:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Hydrogenophilales.f__Hydrogenophilaceae.g__Thiobacillus
## 2023-03-15 20:16:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Ponticaulis
## 2023-03-15 20:16:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Thermococcus
## 2023-03-15 20:16:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Crenobacter
## 2023-03-15 20:16:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Carnobacteriaceae.g__Alloiococcus
## 2023-03-15 20:16:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Anaerostipes
## 2023-03-15 20:16:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Kushneria
## 2023-03-15 20:16:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Kribbella
## 2023-03-15 20:16:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Yaniella
## 2023-03-15 20:16:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Carnobacteriaceae.g__Jeotgalibaca
## 2023-03-15 20:16:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitiniphilus
## 2023-03-15 20:16:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bradyrhizobiaceae.g__Oligotropha
## 2023-03-15 20:16:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Halobacteroides
## 2023-03-15 20:16:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Beggiatoa
## 2023-03-15 20:16:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Mannheimia
## 2023-03-15 20:16:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Asaia
## 2023-03-15 20:16:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Enterorhabdus
## 2023-03-15 20:16:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Polydnaviridae.g__Ichnovirus
## 2023-03-15 20:16:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Proteus
## 2023-03-15 20:16:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Bifidobacteriales.f__Bifidobacteriaceae.g__Alloscardovia
## 2023-03-15 20:16:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.c__Spartobacteria.g__Terrimicrobium
## 2023-03-15 20:16:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Sporomusaceae.g__Pelosinus
## 2023-03-15 20:16:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Arcticibacter
## 2023-03-15 20:16:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Hafnia
## 2023-03-15 20:16:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Virgibacillus
## 2023-03-15 20:16:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Denitrobacterium
## 2023-03-15 20:16:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Phycodnaviridae.g__Coccolithovirus
## 2023-03-15 20:16:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Alkaliphilus
## 2023-03-15 20:16:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Thermales.f__Thermaceae.g__Oceanithermus
## 2023-03-15 20:16:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Vibrio
## 2023-03-15 20:16:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanobacteriaceae.g__Methanosphaera
## 2023-03-15 20:16:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zhouia
## 2023-03-15 20:16:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Hahellaceae.g__Zooshikella
## 2023-03-15 20:16:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Terasakiella
## 2023-03-15 20:16:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bradyrhizobiaceae.g__Tardiphaga
## 2023-03-15 20:16:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfarculales.f__Desulfarculaceae.g__Desulfarculus
## 2023-03-15 20:16:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Rouxiella
## 2023-03-15 20:16:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Microbulbiferaceae.g__Microbulbifer
## 2023-03-15 20:16:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Alphacoronavirus
## 2023-03-15 20:16:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylobacillus
## 2023-03-15 20:16:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Hahellaceae.g__Hahella
## 2023-03-15 20:16:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Leucothrix
## 2023-03-15 20:16:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_III._Incertae_Sedis.g__Thermosediminibacter
## 2023-03-15 20:16:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Tistrella
## 2023-03-15 20:16:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Rahnella
## 2023-03-15 20:16:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Senegalimassilia
## 2023-03-15 20:16:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Vitreoscilla
## 2023-03-15 20:16:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Fabavirus
## 2023-03-15 20:16:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Ishikawaella
## 2023-03-15 20:16:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Bdellovibrionales.f__Bacteriovoracaceae.g__Bacteriovorax
## 2023-03-15 20:16:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Chitinimonas
## 2023-03-15 20:16:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Melissococcus
## 2023-03-15 20:16:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Wenxinia
## 2023-03-15 20:16:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinopolysporales.f__Actinopolysporaceae.g__Actinopolyspora
## 2023-03-15 20:16:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Verrucosispora
## 2023-03-15 20:16:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Thermoplasmatales.f__Picrophilaceae.g__Picrophilus
## 2023-03-15 20:16:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Hylemonella
## 2023-03-15 20:16:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Teredinibacter
## 2023-03-15 20:16:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Chelativorans
## 2023-03-15 20:16:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Halieaceae.g__Congregibacter
## 2023-03-15 20:16:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Kordiimonadales.f__Kordiimonadaceae.g__Kordiimonas
## 2023-03-15 20:16:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Hydrogenovibrio
## 2023-03-15 20:16:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Fibrobacteres.c__Fibrobacteria.o__Fibrobacterales.f__Fibrobacteraceae.g__Fibrobacter
## 2023-03-15 20:16:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Pseudohongiella
## 2023-03-15 20:16:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Lactobacillaceae.g__Sharpea
## 2023-03-15 20:16:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thalassobacter
## 2023-03-15 20:16:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Stappia
## 2023-03-15 20:16:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Caminibacter
## 2023-03-15 20:16:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Stigonematales.g__Hapalosiphon
## 2023-03-15 20:16:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Salegentibacter
## 2023-03-15 20:16:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Cedecea
## 2023-03-15 20:16:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Salinimicrobium
## 2023-03-15 20:16:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Dongia
## 2023-03-15 20:16:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Aeromonas
## 2023-03-15 20:16:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Betacoronavirus
## 2023-03-15 20:16:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Circoviridae.g__Circovirus
## 2023-03-15 20:16:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Limnochordia.o__Limnochordales.f__Limnochordaceae.g__Limnochorda
## 2023-03-15 20:16:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Rubritepida
## 2023-03-15 20:16:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Thermomonosporaceae.g__Spirillospora
## 2023-03-15 20:16:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Clostridium
## 2023-03-15 20:16:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Baculoviridae.g__Deltabaculovirus
## 2023-03-15 20:16:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Nitrosococcus
## 2023-03-15 20:16:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Leptotrichiaceae.g__Streptobacillus
## 2023-03-15 20:16:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methermicoccaceae.g__Methermicoccus
## 2023-03-15 20:16:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.g__Higrevirus
## 2023-03-15 20:16:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Kibdelosporangium
## 2023-03-15 20:16:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.g__Thermorudis
## 2023-03-15 20:16:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Fusobacteriaceae.g__Ilyobacter
## 2023-03-15 20:16:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Hymenobacter
## 2023-03-15 20:16:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Steroidobacter
## 2023-03-15 20:16:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Raphidiopsis
## 2023-03-15 20:16:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Spounalikevirus
## 2023-03-15 20:16:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Dinoroseobacter
## 2023-03-15 20:16:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Anaerovibrio
## 2023-03-15 20:16:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Marinobacterium
## 2023-03-15 20:16:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.g__Candidatus_Hepatobacter
## 2023-03-15 20:16:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Ornatilinea
## 2023-03-15 20:16:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Oceanicaulis
## 2023-03-15 20:16:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Glycomycetales.f__Glycomycetaceae.g__Haloglycomyces
## 2023-03-15 20:16:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Parvibaculum
## 2023-03-15 20:16:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Terracoccus
## 2023-03-15 20:16:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Flavisolibacter
## 2023-03-15 20:16:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Kineosporiales.f__Kineosporiaceae.g__Kineosporia
## 2023-03-15 20:16:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Catelliglobosispora
## 2023-03-15 20:16:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Oribacterium
## 2023-03-15 20:16:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Nonlabens
## 2023-03-15 20:16:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Granulicella
## 2023-03-15 20:16:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Sandarakinorhabdus
## 2023-03-15 20:16:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Agreia
## 2023-03-15 20:16:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Thalassobaculum
## 2023-03-15 20:16:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.g__Timonella
## 2023-03-15 20:16:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Blochmannia
## 2023-03-15 20:16:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Terrabacter
## 2023-03-15 20:16:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Peptostreptococcus
## 2023-03-15 20:16:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Pseudolabrys
## 2023-03-15 20:16:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Acidobacteria.c__Solibacteres.o__Solibacterales.g__Bryobacter
## 2023-03-15 20:16:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Thermanaerovibrio
## 2023-03-15 20:16:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chrysiogenetes.c__Chrysiogenetes.o__Chrysiogenales.f__Chrysiogenaceae.g__Desulfurispirillum
## 2023-03-15 20:16:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Neptunomonas
## 2023-03-15 20:16:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Candidatus_Desulforudis
## 2023-03-15 20:16:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Gemmobacter
## 2023-03-15 20:16:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Diaphorobacter
## 2023-03-15 20:16:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Isosphaeraceae.g__Singulisphaera
## 2023-03-15 20:16:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Anaerofustis
## 2023-03-15 20:16:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Silvibacterium
## 2023-03-15 20:16:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Sporolactobacillaceae.g__Tuberibacillus
## 2023-03-15 20:16:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobiaceae.g__Haloferula
## 2023-03-15 20:16:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Halorhodospira
## 2023-03-15 20:16:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Rubrivivax
## 2023-03-15 20:16:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Virgaviridae.g__Pomovirus
## 2023-03-15 20:16:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Blastomonas
## 2023-03-15 20:16:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Paenirhodobacter
## 2023-03-15 20:16:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Carboxydothermus
## 2023-03-15 20:16:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Iridoviridae.g__Ranavirus
## 2023-03-15 20:16:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Geobacteraceae.g__Geoalkalibacter
## 2023-03-15 20:16:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Adenoviridae.g__Mastadenovirus
## 2023-03-15 20:16:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Magnetococcales.f__Magnetococcaceae.g__Magnetococcus
## 2023-03-15 20:16:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Odoribacteraceae.g__Odoribacter
## 2023-03-15 20:16:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Maribius
## 2023-03-15 20:16:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Nostoc
## 2023-03-15 20:16:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Aurantimonadaceae.g__Martelella
## 2023-03-15 20:16:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Colwellia
## 2023-03-15 20:16:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Microthrixaceae.g__Candidatus_Microthrix
## 2023-03-15 20:16:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Sciscionella
## 2023-03-15 20:16:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Lacinutrix
## 2023-03-15 20:16:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Faecalibaculum
## 2023-03-15 20:16:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Kurthia
## 2023-03-15 20:16:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Isoptericola
## 2023-03-15 20:16:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Saccharibacillus
## 2023-03-15 20:16:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Polycyclovorans
## 2023-03-15 20:16:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Riemerella
## 2023-03-15 20:16:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Rubinisphaera
## 2023-03-15 20:16:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Zymomonas
## 2023-03-15 20:16:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Kluyvera
## 2023-03-15 20:16:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Dechloromonas
## 2023-03-15 20:16:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Confluentimicrobium
## 2023-03-15 20:16:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Falsirhodobacter
## 2023-03-15 20:16:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Carnobacteriaceae.g__Allofustis
## 2023-03-15 20:16:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylobacteriaceae.g__Microvirga
## 2023-03-15 20:16:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Arenimonas
## 2023-03-15 20:16:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Pandoraea
## 2023-03-15 20:16:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Oceanibaculum
## 2023-03-15 20:16:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Lentisphaerae.c__Lentisphaeria.o__Lentisphaerales.f__Lentisphaeraceae.g__Lentisphaera
## 2023-03-15 20:16:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Dicistroviridae.g__Cripavirus
## 2023-03-15 20:16:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Desulfurococcaceae.g__Ignicoccus
## 2023-03-15 20:16:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Cyanothece
## 2023-03-15 20:16:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Candidatus_Cloacimonetes.g__Candidatus_Cloacimonas
## 2023-03-15 20:16:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Thiorhodospira
## 2023-03-15 20:16:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Wigglesworthia
## 2023-03-15 20:16:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Saccharomonospora
## 2023-03-15 20:16:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Mitsuokella
## 2023-03-15 20:16:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Salinarchaeum
## 2023-03-15 20:16:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Poxviridae.g__Capripoxvirus
## 2023-03-15 20:16:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Micavibrio
## 2023-03-15 20:16:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Dermatophilus
## 2023-03-15 20:16:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Leuconostocaceae.g__Weissella
## 2023-03-15 20:16:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Viridibacillus
## 2023-03-15 20:16:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfonatronaceae.g__Desulfonatronum
## 2023-03-15 20:16:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Arsukibacterium
## 2023-03-15 20:16:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Hamadaea
## 2023-03-15 20:16:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Haematospirillum
## 2023-03-15 20:16:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Yersinia
## 2023-03-15 20:16:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Bacteroidaceae.g__Bacteroides
## 2023-03-15 20:16:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_III._Incertae_Sedis.g__Caldicellulosiruptor
## 2023-03-15 20:16:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Baculoviridae.g__Alphabaculovirus
## 2023-03-15 20:16:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Magnetospira
## 2023-03-15 20:16:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.g__Candidatus_Azobacteroides
## 2023-03-15 20:16:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Pelagibacterium
## 2023-03-15 20:16:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Weeksella
## 2023-03-15 20:16:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Thermonemataceae.g__Thermonema
## 2023-03-15 20:16:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Midichloriaceae.g__Candidatus_Midichloria
## 2023-03-15 20:16:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Acidobacteria.c__Solibacteres.o__Solibacterales.f__Solibacteraceae.g__Candidatus_Solibacter
## 2023-03-15 20:16:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Plantibacter
## 2023-03-15 20:16:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Paludibacterium
## 2023-03-15 20:16:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Polynucleobacter
## 2023-03-15 20:16:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Enorma
## 2023-03-15 20:16:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Polyangiaceae.g__Chondromyces
## 2023-03-15 20:16:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Leptotrichiaceae.g__Sebaldella
## 2023-03-15 20:16:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Crinalium
## 2023-03-15 20:16:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Dokdonella
## 2023-03-15 20:16:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Gallibacterium
## 2023-03-15 20:16:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Ferrimicrobium
## 2023-03-15 20:16:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Gulosibacter
## 2023-03-15 20:16:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cardiobacteriales.f__Cardiobacteriaceae.g__Dichelobacter
## 2023-03-15 20:16:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Vitellibacter
## 2023-03-15 20:16:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Agrococcus
## 2023-03-15 20:16:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Finegoldia
## 2023-03-15 20:16:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Chlamydiaceae.g__Chlamydia
## 2023-03-15 20:16:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Pilimelia
## 2023-03-15 20:16:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Nafulsella
## 2023-03-15 20:16:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylosarcina
## 2023-03-15 20:16:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Johnsonella
## 2023-03-15 20:16:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.c__Spartobacteria.o__Chthoniobacterales.f__Chthoniobacteraceae.g__Chthoniobacter
## 2023-03-15 20:16:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Eikenella
## 2023-03-15 20:16:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Hydrogenibacillus
## 2023-03-15 20:16:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylotenera
## 2023-03-15 20:16:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.g__Acidibacillus
## 2023-03-15 20:16:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Alkaliflexus
## 2023-03-15 20:16:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Sanguibacteroides
## 2023-03-15 20:16:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Salivirus
## 2023-03-15 20:16:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Pseudoalteromonadaceae.g__Pseudoalteromonas
## 2023-03-15 20:16:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Kineosporiales.f__Kineosporiaceae.g__Kineococcus
## 2023-03-15 20:16:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methanosarcinaceae.g__Methanosarcina
## 2023-03-15 20:16:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Candidatus_Stoquefichus
## 2023-03-15 20:16:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylobacteriaceae.g__Meganema
## 2023-03-15 20:16:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Orenia
## 2023-03-15 20:16:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Catenuloplanes
## 2023-03-15 20:16:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Sediminibacterium
## 2023-03-15 20:16:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Gordoniaceae.g__Gordonia
## 2023-03-15 20:16:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Veillonellales.f__Veillonellaceae.g__Veillonella
## 2023-03-15 20:16:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Francisellaceae.g__Francisella
## 2023-03-15 20:17:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Xylella
## 2023-03-15 20:17:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Emticicia
## 2023-03-15 20:17:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Ideonella
## 2023-03-15 20:17:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Paraglaciecola
## 2023-03-15 20:17:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Flavihumibacter
## 2023-03-15 20:17:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thioflavicoccus
## 2023-03-15 20:17:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Psychromonadaceae.g__Psychromonas
## 2023-03-15 20:17:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Eggerthella
## 2023-03-15 20:17:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfobulbus
## 2023-03-15 20:17:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Enteractinococcus
## 2023-03-15 20:17:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.g__Emaravirus
## 2023-03-15 20:17:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseivivax
## 2023-03-15 20:17:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhizobiaceae.g__Neorhizobium
## 2023-03-15 20:17:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Neorickettsia
## 2023-03-15 20:17:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Herpesvirales.f__Alloherpesviridae.g__Batrachovirus
## 2023-03-15 20:17:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Acidobacteria.c__Holophagae.o__Holophagales.f__Holophagaceae.g__Geothrix
## 2023-03-15 20:17:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prevotellaceae.g__Prevotella
## 2023-03-15 20:17:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Olleya
## 2023-03-15 20:17:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Spirosoma
## 2023-03-15 20:17:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Campylobacteraceae.g__Campylobacter
## 2023-03-15 20:17:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Nakamurellales.f__Nakamurellaceae.g__Nakamurella
## 2023-03-15 20:17:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Pseudomonadaceae.g__Oblitimonas
## 2023-03-15 20:17:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Paracaedibacteraceae.g__Candidatus_Paracaedibacter
## 2023-03-15 20:17:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Faecalicoccus
## 2023-03-15 20:17:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Cytophaga
## 2023-03-15 20:17:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Methylocella
## 2023-03-15 20:17:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.o__Methylacidiphilales.f__Methylacidiphilaceae.g__Methylacidiphilum
## 2023-03-15 20:17:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Citromicrobium
## 2023-03-15 20:17:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Holosporaceae.g__Holospora
## 2023-03-15 20:17:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Methylibium
## 2023-03-15 20:17:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Psychroflexus
## 2023-03-15 20:17:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Tetrasphaera
## 2023-03-15 20:17:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Mucilaginibacter
## 2023-03-15 20:17:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Echinicola
## 2023-03-15 20:17:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Clostridioides
## 2023-03-15 20:17:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Simplexvirus
## 2023-03-15 20:17:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Kinetoplastibacterium
## 2023-03-15 20:17:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Slackia
## 2023-03-15 20:17:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Solibacillus
## 2023-03-15 20:17:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Kosakonia
## 2023-03-15 20:17:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Gimesia
## 2023-03-15 20:17:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Hydrogenivirga
## 2023-03-15 20:17:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Gemmata
## 2023-03-15 20:17:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Catenulisporales.f__Actinospicaceae.g__Actinospica
## 2023-03-15 20:17:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Nesiotobacter
## 2023-03-15 20:17:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobiaceae.g__Verrucomicrobium
## 2023-03-15 20:17:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Oceanibulbus
## 2023-03-15 20:17:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Criblamydiaceae.g__Criblamydia
## 2023-03-15 20:17:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Porticoccaceae.g__Porticoccus
## 2023-03-15 20:17:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Rhizobacter
## 2023-03-15 20:17:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Commensalibacter
## 2023-03-15 20:17:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Sicinivirus
## 2023-03-15 20:17:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Providencia
## 2023-03-15 20:17:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Marivirga
## 2023-03-15 20:17:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Rhodobacter
## 2023-03-15 20:17:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Microtetraspora
## 2023-03-15 20:17:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Herpesvirales.f__Alloherpesviridae.g__Ictalurivirus
## 2023-03-15 20:17:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Halocynthiibacter
## 2023-03-15 20:17:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Methanomassiliicoccales.f__Methanomassiliicoccaceae.g__Candidatus_Methanoplasma
## 2023-03-15 20:17:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Myroides
## 2023-03-15 20:17:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Paraburkholderia
## 2023-03-15 20:17:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sneathiellales.f__Sneathiellaceae.g__Sneathiella
## 2023-03-15 20:17:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Symbiobacteriaceae.g__Symbiobacterium
## 2023-03-15 20:17:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Kiloniellales.f__Kiloniellaceae.g__Kiloniella
## 2023-03-15 20:17:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Alcanivoracaceae.g__Alcanivorax
## 2023-03-15 20:17:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Acetohalobium
## 2023-03-15 20:17:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Flexithrix
## 2023-03-15 20:17:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Gulbenkiania
## 2023-03-15 20:17:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Cylindrospermum
## 2023-03-15 20:17:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Waikavirus
## 2023-03-15 20:17:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Nitrospirae.c__Nitrospira.o__Nitrospirales.f__Nitrospiraceae.g__Candidatus_Magnetobacterium
## 2023-03-15 20:17:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Coleofasciculus
## 2023-03-15 20:17:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Saccharibacter
## 2023-03-15 20:17:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Tenacibaculum
## 2023-03-15 20:17:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Buttiauxella
## 2023-03-15 20:17:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Fervidobacteriaceae.g__Thermosipho
## 2023-03-15 20:17:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Segetibacter
## 2023-03-15 20:17:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Prauserella
## 2023-03-15 20:17:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Thermocrispum
## 2023-03-15 20:17:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Candidatus_Arthromitus
## 2023-03-15 20:17:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Cecembia
## 2023-03-15 20:17:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Azohydromonas
## 2023-03-15 20:17:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Frankiales.f__Sporichthyaceae.g__Sporichthya
## 2023-03-15 20:17:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Geofilum
## 2023-03-15 20:17:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Dactylosporangium
## 2023-03-15 20:17:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Pseudobacteroides
## 2023-03-15 20:17:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Candidatus_Glomeribacter
## 2023-03-15 20:17:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Moritellaceae.g__Moritella
## 2023-03-15 20:17:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Saprospira
## 2023-03-15 20:17:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sulfitobacter
## 2023-03-15 20:17:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Fibrella
## 2023-03-15 20:17:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Spirochaetaceae.g__Treponema
## 2023-03-15 20:17:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Thermobrachium
## 2023-03-15 20:17:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Haliscomenobacter
## 2023-03-15 20:17:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Haemophilus
## 2023-03-15 20:17:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bradyrhizobiaceae.g__Rhodopseudomonas
## 2023-03-15 20:17:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Thermotogaceae.g__Thermotoga
## 2023-03-15 20:17:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Kamptonema
## 2023-03-15 20:17:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halapricum
## 2023-03-15 20:17:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Methylophaga
## 2023-03-15 20:17:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Haloterrigena
## 2023-03-15 20:17:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Veillonellales.f__Veillonellaceae.g__Megasphaera
## 2023-03-15 20:17:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Flavonifractor
## 2023-03-15 20:17:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Cellulosilyticum
## 2023-03-15 20:17:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Mobilicoccus
## 2023-03-15 20:17:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Geitlerinema
## 2023-03-15 20:17:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Fictibacillus
## 2023-03-15 20:17:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Rhodopirellula
## 2023-03-15 20:17:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Erythrobacteraceae.g__Altererythrobacter
## 2023-03-15 20:17:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Xanthobacter
## 2023-03-15 20:17:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Promicromonospora
## 2023-03-15 20:17:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Leuconostocaceae.g__Leuconostoc
## 2023-03-15 20:17:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfobacterium
## 2023-03-15 20:17:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Sphaerotilus
## 2023-03-15 20:17:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Anaeromyxobacteraceae.g__Anaeromyxobacter
## 2023-03-15 20:17:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Defluviimonas
## 2023-03-15 20:17:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Pirellula
## 2023-03-15 20:17:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Kineosphaera
## 2023-03-15 20:17:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Gracilibacillus
## 2023-03-15 20:17:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thioclava
## 2023-03-15 20:17:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Blattabacteriaceae.g__Blattabacterium
## 2023-03-15 20:17:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Rhodothermaeota.c__Balneolia.o__Balneolales.f__Balneolaceae.g__Gracilimonas
## 2023-03-15 20:17:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methanosarcinaceae.g__Methanomethylovorans
## 2023-03-15 20:17:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Propionicicella
## 2023-03-15 20:17:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Rivulariaceae.g__Calothrix
## 2023-03-15 20:17:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanothermaceae.g__Methanothermus
## 2023-03-15 20:17:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Catabacteriaceae.g__Catabacter
## 2023-03-15 20:17:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Amorphus
## 2023-03-15 20:17:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Tepidicaulis
## 2023-03-15 20:17:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinomycetospora
## 2023-03-15 20:17:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.g__Anaerosporomusa
## 2023-03-15 20:17:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pannonibacter
## 2023-03-15 20:17:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Ornithobacterium
## 2023-03-15 20:17:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Ktedonobacteria.o__Ktedonobacterales.f__Ktedonobacteraceae.g__Ktedonobacter
## 2023-03-15 20:17:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Varicellovirus
## 2023-03-15 20:17:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Vulgatibacteraceae.g__Vulgatibacter
## 2023-03-15 20:17:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Stenoxybacter
## 2023-03-15 20:17:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Microchaetaceae.g__Tolypothrix
## 2023-03-15 20:17:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Microbispora
## 2023-03-15 20:17:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Cycloclasticus
## 2023-03-15 20:17:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiocapsa
## 2023-03-15 20:17:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Rufibacter
## 2023-03-15 20:17:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Skermanella
## 2023-03-15 20:17:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Heliobacteriaceae.g__Heliobacterium
## 2023-03-15 20:17:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Sandaracinaceae.g__Sandaracinus
## 2023-03-15 20:17:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Xylophilus
## 2023-03-15 20:17:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Nannocystaceae.g__Plesiocystis
## 2023-03-15 20:17:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Waddliaceae.g__Waddlia
## 2023-03-15 20:17:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Oxalobacteraceae.g__Herminiimonas
## 2023-03-15 20:17:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Gemmatimonadetes.c__Gemmatimonadetes.o__Gemmatimonadales.f__Gemmatimonadaceae.g__Gemmatirosa
## 2023-03-15 20:17:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Coprobacillus
## 2023-03-15 20:17:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Chlorobium
## 2023-03-15 20:17:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ruegeria
## 2023-03-15 20:17:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zobellia
## 2023-03-15 20:17:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Spo1virus
## 2023-03-15 20:17:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomicrobium
## 2023-03-15 20:17:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Bafinivirus
## 2023-03-15 20:17:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Belliella
## 2023-03-15 20:17:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfovibrionaceae.g__Lawsonia
## 2023-03-15 20:17:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Thermobacillus
## 2023-03-15 20:17:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Regiella
## 2023-03-15 20:17:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.g__Fangia
## 2023-03-15 20:17:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Pseudomonadaceae.g__Azotobacter
## 2023-03-15 20:17:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Thermosulfurimonas
## 2023-03-15 20:17:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Jannaschia
## 2023-03-15 20:17:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobia_subdivision_3.g__Pedosphaera
## 2023-03-15 20:17:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Lyngbya
## 2023-03-15 20:17:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Aneurinibacillus
## 2023-03-15 20:17:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Poxviridae.g__Betaentomopoxvirus
## 2023-03-15 20:17:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Vagococcus
## 2023-03-15 20:17:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Halobiforma
## 2023-03-15 20:17:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Tamlana
## 2023-03-15 20:17:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermacoccaceae.g__Demetria
## 2023-03-15 20:17:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Gorillibacterium
## 2023-03-15 20:17:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Eubacterium
## 2023-03-15 20:17:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylobacter
## 2023-03-15 20:17:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Persicobacteraceae.g__Persicobacter
## 2023-03-15 20:17:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Xenococcus
## 2023-03-15 20:17:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Histophilus
## 2023-03-15 20:17:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Dehalococcoidia.o__Dehalococcoidales.f__Dehalococcoidaceae.g__Dehalococcoides
## 2023-03-15 20:17:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Neisseria
## 2023-03-15 20:17:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Anaplasma
## 2023-03-15 20:17:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Bifidobacteriales.f__Bifidobacteriaceae.g__Scardovia
## 2023-03-15 20:17:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Opitutales.f__Opitutaceae.g__Opitutus
## 2023-03-15 20:17:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfovibrionaceae.g__Bilophila
## 2023-03-15 20:17:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Halobacillus
## 2023-03-15 20:17:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Ventosimonadaceae.g__Ventosimonas
## 2023-03-15 20:17:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Thauera
## 2023-03-15 20:17:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Mycoplasmatales.f__Mycoplasmataceae.g__Ureaplasma
## 2023-03-15 20:17:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Helcococcus
## 2023-03-15 20:17:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Knoellia
## 2023-03-15 20:17:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Macavirus
## 2023-03-15 20:17:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Listeriaceae.g__Listeria
## 2023-03-15 20:17:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Hytrosaviridae.g__Glossinavirus
## 2023-03-15 20:17:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Alicycliphilus
## 2023-03-15 20:17:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Planctomyces
## 2023-03-15 20:17:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Candidatus_Aquiluna
## 2023-03-15 20:17:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Caulobacterales.f__Caulobacteraceae.g__Phenylobacterium
## 2023-03-15 20:17:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Mageeibacillus
## 2023-03-15 20:17:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Astroviridae.g__Mamastrovirus
## 2023-03-15 20:17:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Advenella
## 2023-03-15 20:17:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.g__Candidatus_Sulcia
## 2023-03-15 20:17:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Segniliparaceae.g__Segniliparus
## 2023-03-15 20:17:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfomicrobiaceae.g__Desulfomicrobium
## 2023-03-15 20:17:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Adenoviridae.g__Aviadenovirus
## 2023-03-15 20:17:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Actinotalea
## 2023-03-15 20:17:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Serinicoccus
## 2023-03-15 20:17:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Carnimonas
## 2023-03-15 20:17:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Limnohabitans
## 2023-03-15 20:17:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.g__Elioraea
## 2023-03-15 20:17:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Leifsonia
## 2023-03-15 20:17:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Jonquetella
## 2023-03-15 20:17:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Hepatovirus
## 2023-03-15 20:17:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Hamiltonella
## 2023-03-15 20:17:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Thermoactinomycetaceae.g__Risungbinella
## 2023-03-15 20:17:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Imtechella
## 2023-03-15 20:17:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Schleiferiaceae.g__Schleiferia
## 2023-03-15 20:17:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Hydrogenobaculum
## 2023-03-15 20:17:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Phycodnaviridae.g__Phaeovirus
## 2023-03-15 20:17:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiorhodovibrio
## 2023-03-15 20:17:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Acidaminococcales.f__Acidaminococcaceae.g__Succinispira
## 2023-03-15 20:17:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Polyangiaceae.g__Sorangium
## 2023-03-15 20:17:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Mycobacteriaceae.g__Amycolicicoccus
## 2023-03-15 20:17:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Chelatococcus
## 2023-03-15 20:17:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Fodinicurvata
## 2023-03-15 20:17:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Planktothrix
## 2023-03-15 20:17:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Ilumatobacter
## 2023-03-15 20:17:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Petrotogales.g__Defluviitoga
## 2023-03-15 20:17:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Fervidicella
## 2023-03-15 20:17:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Sutterellaceae.g__Sutterella
## 2023-03-15 20:17:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Alcaligenes
## 2023-03-15 20:17:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Paucibacter
## 2023-03-15 20:17:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Phycicoccus
## 2023-03-15 20:17:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Actinobacillus
## 2023-03-15 20:17:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Staphylococcaceae.g__Jeotgalicoccus
## 2023-03-15 20:17:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Photobacterium
## 2023-03-15 20:17:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Haloferax
## 2023-03-15 20:17:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhizobiaceae.g__Agrobacterium
## 2023-03-15 20:17:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Oceanobacillus
## 2023-03-15 20:17:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Morococcus
## 2023-03-15 20:17:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Trueperella
## 2023-03-15 20:17:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudovibrio
## 2023-03-15 20:17:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Gluconobacter
## 2023-03-15 20:17:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Rhodoferax
## 2023-03-15 20:17:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Arthrospira
## 2023-03-15 20:17:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Sinomonas
## 2023-03-15 20:17:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophaceae.g__Desulfobacca
## 2023-03-15 20:17:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Inquilinus
## 2023-03-15 20:17:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Lentimicrobiaceae.g__Lentimicrobium
## 2023-03-15 20:17:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Raoultella
## 2023-03-15 20:17:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Blastochloris
## 2023-03-15 20:17:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Pleomorphomonas
## 2023-03-15 20:17:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Veillonellales.f__Veillonellaceae.g__Dialister
## 2023-03-15 20:17:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Salinibacterium
## 2023-03-15 20:17:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Candidatus_Endolissoclinum
## 2023-03-15 20:17:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Thiomicrospira
## 2023-03-15 20:17:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiales_Family_XIII._Incertae_Sedis.g__Casaltella
## 2023-03-15 20:17:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Acidaminococcales.f__Acidaminococcaceae.g__Phascolarctobacterium
## 2023-03-15 20:17:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Aquimarina
## 2023-03-15 20:17:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanococci.o__Methanococcales.f__Methanocaldococcaceae.g__Methanocaldococcus
## 2023-03-15 20:17:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Prosthecomicrobium
## 2023-03-15 20:17:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Alloactinosynnema
## 2023-03-15 20:17:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Cobetia
## 2023-03-15 20:17:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiales_Family_XVII._Incertae_Sedis.g__Thermaerobacter
## 2023-03-15 20:17:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Ramlibacter
## 2023-03-15 20:17:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Pimelobacter
## 2023-03-15 20:17:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Faecalibacterium
## 2023-03-15 20:17:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Amoebophilaceae.g__Candidatus_Cardinium
## 2023-03-15 20:17:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Gilvimarinus
## 2023-03-15 20:17:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Bizionia
## 2023-03-15 20:17:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Parvimonas
## 2023-03-15 20:17:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Rickettsiaceae.g__Orientia
## 2023-03-15 20:17:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Nitriliruptoria.o__Nitriliruptorales.f__Nitriliruptoraceae.g__Nitriliruptor
## 2023-03-15 20:17:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Mycetocola
## 2023-03-15 20:17:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__T7likevirus
## 2023-03-15 20:17:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prolixibacteraceae.g__Draconibacterium
## 2023-03-15 20:17:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Saccharicrinis
## 2023-03-15 20:17:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Tymovirales.f__Tymoviridae.g__Tymovirus
## 2023-03-15 20:17:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Gloeocapsa
## 2023-03-15 20:17:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Baculoviridae.g__Betabaculovirus
## 2023-03-15 20:17:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Caldithrix
## 2023-03-15 20:17:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Staphylococcaceae.g__Salinicoccus
## 2023-03-15 20:17:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Niveispirillum
## 2023-03-15 20:17:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Actinoplanes
## 2023-03-15 20:17:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Loktanella
## 2023-03-15 20:17:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Roseateles
## 2023-03-15 20:17:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.f__Leptospiraceae.g__Turneriella
## 2023-03-15 20:17:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Salinisphaerales.f__Salinisphaeraceae.g__Salinisphaera
## 2023-03-15 20:17:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Cryptobacterium
## 2023-03-15 20:17:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanococci.o__Methanococcales.f__Methanococcaceae.g__Methanococcus
## 2023-03-15 20:17:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Flaviviridae.g__Flavivirus
## 2023-03-15 20:17:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Acholeplasmatales.f__Acholeplasmataceae.g__Candidatus_Phytoplasma
## 2023-03-15 20:17:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Moraxellaceae.g__Perlucidibaca
## 2023-03-15 20:17:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Streptosporangium
## 2023-03-15 20:17:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Vogesella
## 2023-03-15 20:17:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Nitrosomonadales.f__Nitrosomonadaceae.g__Nitrosospira
## 2023-03-15 20:17:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Succinivibrionaceae.g__Succinimonas
## 2023-03-15 20:17:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfosarcina
## 2023-03-15 20:17:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Flaviviridae.g__Pestivirus
## 2023-03-15 20:17:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Caldiserica.c__Caldisericia.o__Caldisericales.f__Caldisericaceae.g__Caldisericum
## 2023-03-15 20:17:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Rubellimicrobium
## 2023-03-15 20:17:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Acidihalobacter
## 2023-03-15 20:17:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Tyzzerella
## 2023-03-15 20:17:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Thermovirga
## 2023-03-15 20:17:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Lewinella
## 2023-03-15 20:17:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Propionibacteriaceae.g__Aestuariimicrobium
## 2023-03-15 20:17:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Gillisia
## 2023-03-15 20:17:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Thermales.f__Thermaceae.g__Meiothermus
## 2023-03-15 20:17:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Chlorobaculum
## 2023-03-15 20:17:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Nitratireductor
## 2023-03-15 20:17:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Sporosarcina
## 2023-03-15 20:17:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Thaumarchaeota.c__Nitrososphaeria.o__Nitrososphaerales.f__Nitrososphaeraceae.g__Candidatus_Nitrosocosmicus
## 2023-03-15 20:17:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylocaldum
## 2023-03-15 20:17:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Xenorhabdus
## 2023-03-15 20:17:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Rhodoplanes
## 2023-03-15 20:17:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Cystobacteraceae.g__Stigmatella
## 2023-03-15 20:17:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halolamina
## 2023-03-15 20:17:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Lachnoanaerobaculum
## 2023-03-15 20:17:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Pasteurella
## 2023-03-15 20:17:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Acidobacteria.g__Thermoanaerobaculum
## 2023-03-15 20:17:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Thalassospira
## 2023-03-15 20:17:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Candidatus_Evansia
## 2023-03-15 20:17:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Phycodnaviridae.g__Prymnesiovirus
## 2023-03-15 20:17:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophobacteraceae.g__Syntrophobacter
## 2023-03-15 20:17:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Schlesneria
## 2023-03-15 20:17:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Dyella
## 2023-03-15 20:17:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Plesiomonas
## 2023-03-15 20:17:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Pseudacidovorax
## 2023-03-15 20:17:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Hydrocarboniphaga
## 2023-03-15 20:17:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Jiangellales.f__Jiangellaceae.g__Jiangella
## 2023-03-15 20:17:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Coxiellaceae.g__Diplorickettsia
## 2023-03-15 20:17:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Parabacteroides
## 2023-03-15 20:17:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanobacteriaceae.g__Methanobacterium
## 2023-03-15 20:17:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Brachyspirales.f__Brachyspiraceae.g__Brachyspira
## 2023-03-15 20:17:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Caenimonas
## 2023-03-15 20:17:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Bibersteinia
## 2023-03-15 20:17:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Lactobacillaceae.g__Lactobacillus
## 2023-03-15 20:17:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Nepovirus
maaslin_putative_group_without <- function_Maaslin2(df_ACC_filter_putative_Voom_SNM, "Without_combined", "Temp/putative_group_without")
## [1] "Warning: Deleting existing log file: Temp/putative_group_without/maaslin2.log"
## 2023-03-15 20:17:34 INFO::Writing function arguments to log file
## 2023-03-15 20:17:34 INFO::Verifying options selected are valid
## 2023-03-15 20:17:34 INFO::Determining format of input files
## 2023-03-15 20:17:34 INFO::Input format is data samples as rows and metadata samples as rows
## 2023-03-15 20:17:34 INFO::Formula for random effects: expr ~ (1 | SEX) + (1 | Ethnicity_Race) + (1 | AGE) + (1 | Neoplasm_Status) + (1 | Clinical_Status_3_Mo_Post.Op) + (1 | Surgical_margin) + (1 | ATYPICAL_MITOTIC_FIGURES)
## 2023-03-15 20:17:34 INFO::Formula for fixed effects: expr ~  Without_combined
## 2023-03-15 20:17:34 INFO::Filter data based on min abundance and min prevalence
## 2023-03-15 20:17:34 INFO::Total samples in data: 77
## 2023-03-15 20:17:34 INFO::Min samples required with min abundance for a feature not to be filtered: 0.000000
## 2023-03-15 20:17:34 INFO::Total filtered features: 5
## 2023-03-15 20:17:34 INFO::Filtered feature names from abundance and prevalence filtering: k__Viruses.f__Hytrosaviridae.g__Muscavirus, k__Viruses.f__Closteroviridae.g__Crinivirus, k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halomicrobium, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Azovibrio, k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Psychrobacillus
## 2023-03-15 20:17:34 INFO::Total filtered features with variance filtering: 0
## 2023-03-15 20:17:34 INFO::Filtered feature names from variance filtering:
## 2023-03-15 20:17:34 INFO::Running selected normalization method: NONE
## 2023-03-15 20:17:34 INFO::Applying z-score to standardize continuous metadata
## 2023-03-15 20:17:34 INFO::Running selected transform method: NONE
## 2023-03-15 20:17:34 INFO::Running selected analysis method: LM
## 2023-03-15 20:17:34 INFO::Creating cluster of 6 R processes
## 2023-03-15 20:18:00 INFO::Counting total values for each feature
## 2023-03-15 20:18:00 WARNING::Deleting existing residuals file: Temp/putative_group_without/residuals.rds
## 2023-03-15 20:18:00 INFO::Writing residuals to file Temp/putative_group_without/residuals.rds
## 2023-03-15 20:18:00 WARNING::Deleting existing fitted file: Temp/putative_group_without/fitted.rds
## 2023-03-15 20:18:00 INFO::Writing fitted values to file Temp/putative_group_without/fitted.rds
## 2023-03-15 20:18:00 WARNING::Deleting existing ranef file: Temp/putative_group_without/ranef.rds
## 2023-03-15 20:18:00 INFO::Writing extracted random effects to file Temp/putative_group_without/ranef.rds
## 2023-03-15 20:18:00 INFO::Writing all results to file (ordered by increasing q-values): Temp/putative_group_without/all_results.tsv
## 2023-03-15 20:18:00 INFO::Writing the significant results (those which are less than or equal to the threshold of 0.250000 ) to file (ordered by increasing q-values): Temp/putative_group_without/significant_results.tsv
## 2023-03-15 20:18:00 INFO::Writing heatmap of significant results to file: Temp/putative_group_without/heatmap.pdf
## Warning in xtfrm.data.frame(x): cannot xtfrm data frames
## [1] "There is not enough metadata in the associations to create a heatmap plot. Please review the associations in text output file."
## 2023-03-15 20:18:00 INFO::Writing association plots (one for each significant association) to output folder: Temp/putative_group_without
## 2023-03-15 20:18:00 INFO::Plotting associations from most to least significant, grouped by metadata
## 2023-03-15 20:18:00 INFO::Plotting data for metadata number 1, Without_combined
## 2023-03-15 20:18:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Sfi1unalikevirus
## 2023-03-15 20:18:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Poxviridae.g__Parapoxvirus
## 2023-03-15 20:18:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Bicaudaviridae.g__Bicaudavirus
## 2023-03-15 20:18:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Papillomaviridae.g__Betapapillomavirus
## 2023-03-15 20:18:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Bcep22likevirus
## 2023-03-15 20:18:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Poxviridae.g__Cervidpoxvirus
## 2023-03-15 20:18:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__T5likevirus
## 2023-03-15 20:18:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Lambdalikevirus
## 2023-03-15 20:18:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Anelloviridae.g__Alphatorquevirus
## 2023-03-15 20:18:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.g__Pithovirus
## 2023-03-15 20:18:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Barnyardlikevirus
## 2023-03-15 20:18:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Closteroviridae.g__Closterovirus
## 2023-03-15 20:18:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Fuselloviridae.g__Alphafusellovirus
## 2023-03-15 20:18:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__N4likevirus
## 2023-03-15 20:18:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Retroviridae.g__Lentivirus
## 2023-03-15 20:18:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Mononegavirales.f__Nyamiviridae.g__Nyavirus
## 2023-03-15 20:18:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Andromedalikevirus
## 2023-03-15 20:18:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Closteroviridae.g__Ampelovirus
## 2023-03-15 20:18:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Papillomaviridae.g__Gammapapillomavirus
## 2023-03-15 20:18:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Herpesvirales.f__Malacoherpesviridae.g__Ostreavirus
## 2023-03-15 20:18:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Sfi21dtunalikevirus
## 2023-03-15 20:18:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.g__Bacilladnavirus
## 2023-03-15 20:18:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Skunalikevirus
## 2023-03-15 20:18:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Cp220likevirus
## 2023-03-15 20:18:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Phikzlikevirus
## 2023-03-15 20:18:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Orthomyxoviridae.g__Influenzavirus_C
## 2023-03-15 20:18:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phi29likevirus
## 2023-03-15 20:18:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Caulimoviridae.g__Cavemovirus
## 2023-03-15 20:18:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Anelloviridae.g__Betatorquevirus
## 2023-03-15 20:18:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Caulimoviridae.g__Caulimovirus
## 2023-03-15 20:18:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Parvoviridae.g__Protoparvovirus
## 2023-03-15 20:18:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Bromoviridae.g__Alfamovirus
## 2023-03-15 20:18:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Sp6likevirus
## 2023-03-15 20:18:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Hepadnaviridae.g__Orthohepadnavirus
## 2023-03-15 20:18:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Tymovirales.f__Alphaflexiviridae.g__Allexivirus
## 2023-03-15 20:18:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Parvoviridae.g__Ambidensovirus
## 2023-03-15 20:18:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Comovirus
## 2023-03-15 20:18:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Bromoviridae.g__Ilarvirus
## 2023-03-15 20:18:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Narnaviridae.g__Narnavirus
## 2023-03-15 20:18:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Totiviridae.g__Totivirus
## 2023-03-15 20:18:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Potyviridae.g__Tritimovirus
## 2023-03-15 20:18:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Papillomaviridae.g__Dyopipapillomavirus
## 2023-03-15 20:18:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Siccibacter
## 2023-03-15 20:18:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Neosynechococcus
## 2023-03-15 20:18:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Dolichospermum
## 2023-03-15 20:18:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Altibacter
## 2023-03-15 20:18:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Methanomassiliicoccales.f__Methanomassiliicoccaceae.g__Candidatus_Methanomethylophilus
## 2023-03-15 20:18:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Nitritalea
## 2023-03-15 20:18:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Mangrovibacter
## 2023-03-15 20:18:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Thalassotalea
## 2023-03-15 20:18:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Pseudoramibacter
## 2023-03-15 20:18:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Reinekea
## 2023-03-15 20:18:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Natronomonas
## 2023-03-15 20:18:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natronobacterium
## 2023-03-15 20:18:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfospira
## 2023-03-15 20:18:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Arenitalea
## 2023-03-15 20:18:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Thermoactinomycetaceae.g__Shimazuella
## 2023-03-15 20:18:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Gaetbulibacter
## 2023-03-15 20:18:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Basilea
## 2023-03-15 20:18:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Alicyclobacillaceae.g__Effusibacillus
## 2023-03-15 20:18:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitinibacter
## 2023-03-15 20:18:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanoregulaceae.g__Methanolinea
## 2023-03-15 20:18:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanolacinia
## 2023-03-15 20:18:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanococci.o__Methanococcales.f__Methanocaldococcaceae.g__Methanotorris
## 2023-03-15 20:18:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Myxosarcina
## 2023-03-15 20:18:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Gayadomonas
## 2023-03-15 20:18:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomarinum
## 2023-03-15 20:18:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Jeotgalibacillus
## 2023-03-15 20:18:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Zymobacter
## 2023-03-15 20:18:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Paeniglutamicibacter
## 2023-03-15 20:18:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halobellus
## 2023-03-15 20:18:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Flaviramulus
## 2023-03-15 20:18:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Cyclobacterium
## 2023-03-15 20:18:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Sideroxydans
## 2023-03-15 20:18:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Sediminibacillus
## 2023-03-15 20:18:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Saccharospirillum
## 2023-03-15 20:18:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Robiginitalea
## 2023-03-15 20:18:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Caldimicrobium
## 2023-03-15 20:18:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Actinopolymorpha
## 2023-03-15 20:18:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Candidatus_Phaeomarinobacter
## 2023-03-15 20:18:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Candidatus_Koribacter
## 2023-03-15 20:18:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermabacteraceae.g__Helcobacillus
## 2023-03-15 20:18:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Centipeda
## 2023-03-15 20:18:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Nocardiopsaceae.g__Allosalinactinospora
## 2023-03-15 20:18:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ponticoccus
## 2023-03-15 20:18:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halogranum
## 2023-03-15 20:18:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Nautilia
## 2023-03-15 20:18:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Obesumbacterium
## 2023-03-15 20:18:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Desulfurobacteriales.f__Desulfurobacteriaceae.g__Thermovibrio
## 2023-03-15 20:18:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Aliiroseovarius
## 2023-03-15 20:18:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halobacterium
## 2023-03-15 20:18:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.g__Thermosulfidibacter
## 2023-03-15 20:18:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Stigonematales.g__Mastigocladopsis
## 2023-03-15 20:18:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Thaumarchaeota.o__Nitrosopumilales.f__Nitrosopumilaceae.g__Candidatus_Nitrosoarchaeum
## 2023-03-15 20:18:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Mesoaciditogales.f__Mesoaciditogaceae.g__Mesoaciditoga
## 2023-03-15 20:18:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Wolinella
## 2023-03-15 20:18:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Halopiger
## 2023-03-15 20:18:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Thaumarchaeota.o__Nitrosopumilales.f__Nitrosopumilaceae.g__Nitrosopumilus
## 2023-03-15 20:18:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Marinococcus
## 2023-03-15 20:18:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfobacula
## 2023-03-15 20:18:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanoculleus
## 2023-03-15 20:18:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Spongiibacteraceae.g__Dasania
## 2023-03-15 20:18:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Thermincola
## 2023-03-15 20:18:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Shuttleworthia
## 2023-03-15 20:18:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylovorus
## 2023-03-15 20:18:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thalassobium
## 2023-03-15 20:18:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.o__Thermomicrobiales.f__Thermomicrobiaceae.g__Thermomicrobium
## 2023-03-15 20:18:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Thermocrinis
## 2023-03-15 20:18:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Arhodomonas
## 2023-03-15 20:18:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanofollis
## 2023-03-15 20:18:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.g__Hoyosella
## 2023-03-15 20:18:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Mesonia
## 2023-03-15 20:18:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Basfia
## 2023-03-15 20:18:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Candidatus_Atelocyanobacterium
## 2023-03-15 20:18:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Thalassolituus
## 2023-03-15 20:18:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Allobaculum
## 2023-03-15 20:18:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Coriobacterium
## 2023-03-15 20:18:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Amphritea
## 2023-03-15 20:18:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Marinagarivorans
## 2023-03-15 20:18:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Solitalea
## 2023-03-15 20:18:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Thermoplasmatales.f__Ferroplasmaceae.g__Ferroplasma
## 2023-03-15 20:18:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Thermoproteales.f__Thermoproteaceae.g__Vulcanisaeta
## 2023-03-15 20:18:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Bermanella
## 2023-03-15 20:18:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Afifella
## 2023-03-15 20:18:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Rummeliibacillus
## 2023-03-15 20:18:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfurivibrio
## 2023-03-15 20:18:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Salinibacillus
## 2023-03-15 20:18:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Pseudobutyrivibrio
## 2023-03-15 20:18:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Kosmotogales.f__Kosmotogaceae.g__Mesotoga
## 2023-03-15 20:18:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Paracaedibacteraceae.g__Candidatus_Odyssella
## 2023-03-15 20:18:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Holdemania
## 2023-03-15 20:18:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Balneatrix
## 2023-03-15 20:18:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Sulfuricurvum
## 2023-03-15 20:18:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Dielma
## 2023-03-15 20:18:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Leminorella
## 2023-03-15 20:18:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Terribacillus
## 2023-03-15 20:18:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseibacterium
## 2023-03-15 20:18:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Lentzea
## 2023-03-15 20:18:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Halolactibacillus
## 2023-03-15 20:18:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Lacimicrobium
## 2023-03-15 20:18:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Ardenticatenia.o__Ardenticatenales.f__Ardenticatenaceae.g__Ardenticatena
## 2023-03-15 20:18:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Halostagnicola
## 2023-03-15 20:18:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Adlercreutzia
## 2023-03-15 20:18:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Legionellaceae.g__Tatlockia
## 2023-03-15 20:18:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Candidatus_Photodesmus
## 2023-03-15 20:18:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfonatronospira
## 2023-03-15 20:18:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Nereida
## 2023-03-15 20:18:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Paucisalibacillus
## 2023-03-15 20:18:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Cloacibacillus
## 2023-03-15 20:18:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Thaumarchaeota.g__Candidatus_Nitrosotenuis
## 2023-03-15 20:18:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Subdoligranulum
## 2023-03-15 20:18:16 INFO::Creating boxplot for categorical data, Without_combined vs contaminant1Harvard
## 2023-03-15 20:18:16 INFO::Creating boxplot for categorical data, Without_combined vs contaminant2HarvardCanadaBaylorWashU
## 2023-03-15 20:18:16 INFO::Creating boxplot for categorical data, Without_combined vs contaminant3AllSeqCenters
## 2023-03-15 20:18:16 INFO::Creating boxplot for categorical data, Without_combined vs contaminant4RandomSpikesHarvard
## 2023-03-15 20:18:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Tymovirales.f__Betaflexiviridae.g__Trichovirus
## 2023-03-15 20:18:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phikmvlikevirus
## 2023-03-15 20:18:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Sedimenticola
## 2023-03-15 20:18:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Flagellimonas
## 2023-03-15 20:18:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanoregulaceae.g__Methanosphaerula
## 2023-03-15 20:18:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Sellimonas
## 2023-03-15 20:18:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Thalassomonas
## 2023-03-15 20:18:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Haloarcula
## 2023-03-15 20:18:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Catenovulum
## 2023-03-15 20:18:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Virgaviridae.g__Pecluvirus
## 2023-03-15 20:18:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Gramella
## 2023-03-15 20:18:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__L5likevirus
## 2023-03-15 20:18:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Alkalilimnicola
## 2023-03-15 20:18:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.g__Aciduliprofundum
## 2023-03-15 20:18:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Aromatoleum
## 2023-03-15 20:18:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Pyrococcus
## 2023-03-15 20:18:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natronorubrum
## 2023-03-15 20:18:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Microvirgula
## 2023-03-15 20:18:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Prosthecochloris
## 2023-03-15 20:18:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Candidatus_Methylopumilus
## 2023-03-15 20:18:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halanaeroarchaeum
## 2023-03-15 20:18:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Nisaea
## 2023-03-15 20:18:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Coprobacter
## 2023-03-15 20:18:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Puniceibacterium
## 2023-03-15 20:18:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.g__Thermobaculum
## 2023-03-15 20:18:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Rudanella
## 2023-03-15 20:18:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiocystis
## 2023-03-15 20:18:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Nocardiopsaceae.g__Streptomonospora
## 2023-03-15 20:18:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylothermaceae.g__Methylohalobius
## 2023-03-15 20:18:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Deferribacter
## 2023-03-15 20:18:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Cryomorphaceae.g__Owenweeksia
## 2023-03-15 20:18:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Rubidibacter
## 2023-03-15 20:18:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prolixibacteraceae.g__Prolixibacter
## 2023-03-15 20:18:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Youngiibacter
## 2023-03-15 20:18:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Agarivorans
## 2023-03-15 20:18:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Aliihoeflea
## 2023-03-15 20:18:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Verrucomicrobia.c__Spartobacteria.g__Candidatus_Xiphinematobacter
## 2023-03-15 20:18:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatiglans
## 2023-03-15 20:18:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Azonexus
## 2023-03-15 20:18:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Aliiglaciecola
## 2023-03-15 20:18:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.g__Methyloceanibacter
## 2023-03-15 20:18:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__I3likevirus
## 2023-03-15 20:18:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Renibacterium
## 2023-03-15 20:18:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Dactylococcopsis
## 2023-03-15 20:18:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Parvularculales.f__Parvularculaceae.g__Parvularcula
## 2023-03-15 20:18:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Pyrodictiaceae.g__Pyrodictium
## 2023-03-15 20:18:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Leeia
## 2023-03-15 20:18:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Stanieria
## 2023-03-15 20:18:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Tolumonas
## 2023-03-15 20:18:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Yokenella
## 2023-03-15 20:18:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Mimiviridae.g__Mimivirus
## 2023-03-15 20:18:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.o__Haloplasmatales.f__Haloplasmataceae.g__Haloplasma
## 2023-03-15 20:18:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.g__Tenuivirus
## 2023-03-15 20:18:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Leeuwenhoekiella
## 2023-03-15 20:18:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Moranella
## 2023-03-15 20:18:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Gynuella
## 2023-03-15 20:18:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Desulfuromonadaceae.g__Desulfuromonas
## 2023-03-15 20:18:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Marinimicrobium
## 2023-03-15 20:18:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Holdemanella
## 2023-03-15 20:18:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Pleurocapsa
## 2023-03-15 20:18:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Ignavibacteriae.c__Ignavibacteria.o__Ignavibacteriales.f__Melioribacteraceae.g__Melioribacter
## 2023-03-15 20:18:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Salinivibrio
## 2023-03-15 20:18:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Gottschalkia
## 2023-03-15 20:18:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Gallionella
## 2023-03-15 20:18:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Flexilinea
## 2023-03-15 20:18:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Cryobacterium
## 2023-03-15 20:18:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Legionellaceae.g__Fluoribacter
## 2023-03-15 20:18:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_IV._Incertae_Sedis.g__Mahella
## 2023-03-15 20:18:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Poxviridae.g__Alphaentomopoxvirus
## 2023-03-15 20:18:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Aerococcaceae.g__Eremococcus
## 2023-03-15 20:18:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Pseudaminobacter
## 2023-03-15 20:18:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Cyanobacterium
## 2023-03-15 20:18:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Maritalea
## 2023-03-15 20:18:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Myxococcaceae.g__Corallococcus
## 2023-03-15 20:18:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Chelonobacter
## 2023-03-15 20:18:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Herbiconiux
## 2023-03-15 20:18:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Ammonifex
## 2023-03-15 20:18:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Thaumarchaeota.c__Nitrososphaeria.o__Nitrososphaerales.f__Nitrososphaeraceae.g__Nitrososphaera
## 2023-03-15 20:18:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Crocinitomicaceae.g__Crocinitomix
## 2023-03-15 20:18:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Campylobacteraceae.g__Sulfurospirillum
## 2023-03-15 20:18:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Hydrogenobacter
## 2023-03-15 20:18:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Wohlfahrtiimonas
## 2023-03-15 20:18:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Bromoviridae.g__Cucumovirus
## 2023-03-15 20:18:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halarchaeum
## 2023-03-15 20:18:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Pelodictyon
## 2023-03-15 20:18:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Chloroflexia.o__Chloroflexales.f__Oscillochloridaceae.g__Oscillochloris
## 2023-03-15 20:18:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Thermotogaceae.g__Pseudothermotoga
## 2023-03-15 20:18:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.f__Competibacteraceae.g__Candidatus_Competibacter
## 2023-03-15 20:18:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Deefgea
## 2023-03-15 20:18:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Kandleria
## 2023-03-15 20:18:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halalkalicoccus
## 2023-03-15 20:18:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatirhabdium
## 2023-03-15 20:18:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Citreicella
## 2023-03-15 20:18:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Rhodothermaeota.c__Balneolia.o__Balneolales.f__Balneolaceae.g__Balneola
## 2023-03-15 20:18:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermodesulfobiaceae.g__Thermodesulfobium
## 2023-03-15 20:18:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Halotalea
## 2023-03-15 20:18:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Poxviridae.g__Yatapoxvirus
## 2023-03-15 20:18:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Marinospirillum
## 2023-03-15 20:18:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Anaerophaga
## 2023-03-15 20:18:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Sphingorhabdus
## 2023-03-15 20:18:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Leadbetterella
## 2023-03-15 20:18:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Aurantimonadaceae.g__Fulvimarina
## 2023-03-15 20:18:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Candidatus_Ruthia
## 2023-03-15 20:18:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Bdellovibrionales.f__Halobacteriovoraceae.g__Halobacteriovorax
## 2023-03-15 20:18:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Eggerthia
## 2023-03-15 20:18:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Paraoerskovia
## 2023-03-15 20:18:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Amphibacillus
## 2023-03-15 20:18:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Geovibrio
## 2023-03-15 20:18:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Actinotignum
## 2023-03-15 20:18:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Joostella
## 2023-03-15 20:18:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Pyramidobacter
## 2023-03-15 20:18:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Phaeodactylibacter
## 2023-03-15 20:18:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Hellea
## 2023-03-15 20:18:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.o__Bacteroidetes_Order_II._Incertae_sedis.f__Rhodothermaceae.g__Salisaeta
## 2023-03-15 20:18:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sedimentitalea
## 2023-03-15 20:18:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Derxia
## 2023-03-15 20:18:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Thermosynechococcus
## 2023-03-15 20:18:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Fusobacteriaceae.g__Cetobacterium
## 2023-03-15 20:18:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Bifidobacteriales.f__Bifidobacteriaceae.g__Parascardovia
## 2023-03-15 20:18:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Spirochaetaceae.g__Salinispira
## 2023-03-15 20:18:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.o__Bacteroidetes_Order_II._Incertae_sedis.f__Rhodothermaceae.g__Salinibacter
## 2023-03-15 20:18:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylococcus
## 2023-03-15 20:18:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Thermanaerothrix
## 2023-03-15 20:18:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Acaricomes
## 2023-03-15 20:18:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Thermomonosporaceae.g__Thermomonospora
## 2023-03-15 20:18:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Thioploca
## 2023-03-15 20:18:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Isosphaeraceae.g__Isosphaera
## 2023-03-15 20:18:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.g__Nitratiruptor
## 2023-03-15 20:18:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Hepeviridae.g__Piscihepevirus
## 2023-03-15 20:18:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Thermopetrobacter
## 2023-03-15 20:18:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Siansivirga
## 2023-03-15 20:18:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Ignavibacteriae.c__Ignavibacteria.o__Ignavibacteriales.f__Ignavibacteriaceae.g__Ignavibacterium
## 2023-03-15 20:18:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Riesia
## 2023-03-15 20:18:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Proteiniclasticum
## 2023-03-15 20:18:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Lymphocryptovirus
## 2023-03-15 20:18:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Longilinea
## 2023-03-15 20:18:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Rhodovibrio
## 2023-03-15 20:18:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Cryocola
## 2023-03-15 20:18:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Franconibacter
## 2023-03-15 20:18:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Shimwellia
## 2023-03-15 20:18:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Brenneria
## 2023-03-15 20:18:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.g__Candidatus_Babela
## 2023-03-15 20:18:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Yonghaparkia
## 2023-03-15 20:18:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Oxobacter
## 2023-03-15 20:18:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Blastopirellula
## 2023-03-15 20:18:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Kerstersia
## 2023-03-15 20:18:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Terasakiella
## 2023-03-15 20:18:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Chloroherpeton
## 2023-03-15 20:18:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Mariniradius
## 2023-03-15 20:18:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Ignatzschineria
## 2023-03-15 20:18:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Oxalobacteraceae.g__Pseudoduganella
## 2023-03-15 20:18:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Cucumibacter
## 2023-03-15 20:18:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudorhodobacter
## 2023-03-15 20:18:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Litoreibacter
## 2023-03-15 20:18:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Aestuariivita
## 2023-03-15 20:18:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halanaerobiaceae.g__Halothermothrix
## 2023-03-15 20:18:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Aquamavirus
## 2023-03-15 20:18:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Thaumarchaeota.g__Candidatus_Nitrosopelagicus
## 2023-03-15 20:18:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Enterovirus
## 2023-03-15 20:18:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.g__Kallipyga
## 2023-03-15 20:18:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfonatronovibrio
## 2023-03-15 20:18:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.g__Nitratifractor
## 2023-03-15 20:18:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pragia
## 2023-03-15 20:18:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Bunyaviridae.g__Orthobunyavirus
## 2023-03-15 20:18:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Silanimonas
## 2023-03-15 20:18:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Salipiger
## 2023-03-15 20:18:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Chroococcidiopsis
## 2023-03-15 20:18:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sediminimonas
## 2023-03-15 20:18:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudooceanicola
## 2023-03-15 20:18:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Gluconacetobacter
## 2023-03-15 20:18:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudodonghicola
## 2023-03-15 20:18:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Richelia
## 2023-03-15 20:18:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Lentibacillus
## 2023-03-15 20:18:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Ideonella
## 2023-03-15 20:18:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Simiduia
## 2023-03-15 20:18:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Candidatus_Neoehrlichia
## 2023-03-15 20:18:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Dethiosulfovibrio
## 2023-03-15 20:18:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Xylanimonas
## 2023-03-15 20:18:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prevotellaceae.g__Hallella
## 2023-03-15 20:18:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Aeribacillus
## 2023-03-15 20:18:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Flexistipes
## 2023-03-15 20:18:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Nitrincola
## 2023-03-15 20:18:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Spongiibacteraceae.g__Spongiibacter
## 2023-03-15 20:18:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Archaeoglobi.o__Archaeoglobales.f__Archaeoglobaceae.g__Geoglobus
## 2023-03-15 20:18:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfocapsa
## 2023-03-15 20:18:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Oceaniovalibus
## 2023-03-15 20:18:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylovulum
## 2023-03-15 20:18:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Coprococcus
## 2023-03-15 20:18:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Arenaviridae.g__Arenavirus
## 2023-03-15 20:18:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bradyrhizobiaceae.g__Tardiphaga
## 2023-03-15 20:18:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Stappia
## 2023-03-15 20:18:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ketogulonicigenium
## 2023-03-15 20:18:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Anelloviridae.g__Gammatorquevirus
## 2023-03-15 20:18:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Sporomusaceae.g__Pelosinus
## 2023-03-15 20:18:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Mitsuaria
## 2023-03-15 20:18:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Jejuia
## 2023-03-15 20:18:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Levilinea
## 2023-03-15 20:18:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinosynnema
## 2023-03-15 20:18:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Denitrobacterium
## 2023-03-15 20:18:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Vitreoscilla
## 2023-03-15 20:18:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Thiolapillus
## 2023-03-15 20:18:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Virgibacillus
## 2023-03-15 20:18:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Granulibacter
## 2023-03-15 20:18:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Mucispirillum
## 2023-03-15 20:18:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Marvinbryantia
## 2023-03-15 20:18:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Acidobacterium
## 2023-03-15 20:18:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Acidocella
## 2023-03-15 20:18:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Gallaecimonas
## 2023-03-15 20:18:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Christensenellaceae.g__Christensenella
## 2023-03-15 20:18:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Kushneria
## 2023-03-15 20:18:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Hydrogenophilales.f__Hydrogenophilaceae.g__Thiobacillus
## 2023-03-15 20:18:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Anaerostipes
## 2023-03-15 20:18:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Kribbella
## 2023-03-15 20:18:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Carnobacteriaceae.g__Alloiococcus
## 2023-03-15 20:18:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Halobacteroides
## 2023-03-15 20:18:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Salinimicrobium
## 2023-03-15 20:18:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Lunatimonas
## 2023-03-15 20:18:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Tunalikevirus
## 2023-03-15 20:18:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Octadecabacter
## 2023-03-15 20:18:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Caulobacterales.f__Caulobacteraceae.g__Woodsholea
## 2023-03-15 20:18:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Hafnia
## 2023-03-15 20:18:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Ishikawaella
## 2023-03-15 20:18:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Sediminibacter
## 2023-03-15 20:18:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Rubritepida
## 2023-03-15 20:18:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zunongwangia
## 2023-03-15 20:18:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Starkeya
## 2023-03-15 20:18:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Paramesorhizobium
## 2023-03-15 20:18:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Beggiatoa
## 2023-03-15 20:18:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Allochromatium
## 2023-03-15 20:18:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Fictibacillus
## 2023-03-15 20:18:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Tistrella
## 2023-03-15 20:18:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Verrucomicrobia.c__Spartobacteria.g__Terrimicrobium
## 2023-03-15 20:18:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Microchaetaceae.g__Microchaete
## 2023-03-15 20:18:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Luteibacter
## 2023-03-15 20:18:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Frateuria
## 2023-03-15 20:18:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Microterricola
## 2023-03-15 20:18:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oleiphilaceae.g__Oleiphilus
## 2023-03-15 20:18:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Enterorhabdus
## 2023-03-15 20:18:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Candidatus_Accumulibacter
## 2023-03-15 20:18:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Kordiimonadales.f__Kordiimonadaceae.g__Kordiimonas
## 2023-03-15 20:18:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Nitrosococcus
## 2023-03-15 20:18:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Synergistes
## 2023-03-15 20:18:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Amoebophilaceae.g__Candidatus_Amoebophilus
## 2023-03-15 20:18:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Crenobacter
## 2023-03-15 20:18:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.f__Leptospiraceae.g__Leptonema
## 2023-03-15 20:18:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Eudoraea
## 2023-03-15 20:18:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Thermoplasmatales.f__Picrophilaceae.g__Picrophilus
## 2023-03-15 20:18:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Leptolinea
## 2023-03-15 20:18:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinopolysporales.f__Actinopolysporaceae.g__Actinopolyspora
## 2023-03-15 20:18:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Asaia
## 2023-03-15 20:18:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitiniphilus
## 2023-03-15 20:18:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Gemmobacter
## 2023-03-15 20:18:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Geobacteraceae.g__Geopsychrobacter
## 2023-03-15 20:18:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Galbibacter
## 2023-03-15 20:18:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Austwickia
## 2023-03-15 20:18:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Kurthia
## 2023-03-15 20:18:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfarculales.f__Desulfarculaceae.g__Desulfarculus
## 2023-03-15 20:18:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Maritimibacter
## 2023-03-15 20:18:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Palaeococcus
## 2023-03-15 20:18:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Flavisolibacter
## 2023-03-15 20:18:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Chelativorans
## 2023-03-15 20:18:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Thermales.f__Thermaceae.g__Oceanithermus
## 2023-03-15 20:18:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Leucothrix
## 2023-03-15 20:18:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Crocinitomicaceae.g__Fluviicola
## 2023-03-15 20:18:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Methyloferula
## 2023-03-15 20:18:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Steroidobacter
## 2023-03-15 20:18:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.g__Phocaeicola
## 2023-03-15 20:18:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Candidatus_Stoquefichus
## 2023-03-15 20:18:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Proteus
## 2023-03-15 20:18:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylobacillus
## 2023-03-15 20:18:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Hahellaceae.g__Hahella
## 2023-03-15 20:18:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Mannheimia
## 2023-03-15 20:18:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Spirochaetaceae.g__Treponema
## 2023-03-15 20:18:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Baculoviridae.g__Deltabaculovirus
## 2023-03-15 20:18:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Verrucosispora
## 2023-03-15 20:18:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Halorhodospira
## 2023-03-15 20:18:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Fusobacteriaceae.g__Ilyobacter
## 2023-03-15 20:18:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Longispora
## 2023-03-15 20:18:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Ewingella
## 2023-03-15 20:18:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Acidobacteria.c__Solibacteres.o__Solibacterales.g__Bryobacter
## 2023-03-15 20:18:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Salegentibacter
## 2023-03-15 20:18:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Castellaniella
## 2023-03-15 20:18:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Alphacoronavirus
## 2023-03-15 20:18:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thalassobacter
## 2023-03-15 20:18:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Simkaniaceae.g__Simkania
## 2023-03-15 20:18:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Andreprevotia
## 2023-03-15 20:18:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Aquamicrobium
## 2023-03-15 20:18:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophaceae.g__Syntrophus
## 2023-03-15 20:18:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Thalassobaculum
## 2023-03-15 20:18:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Pelistega
## 2023-03-15 20:18:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Isoptericola
## 2023-03-15 20:18:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Thermodesulfatator
## 2023-03-15 20:18:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Propionispira
## 2023-03-15 20:18:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Fabavirus
## 2023-03-15 20:18:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfohalobium
## 2023-03-15 20:18:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Poxviridae.g__Leporipoxvirus
## 2023-03-15 20:18:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cardiobacteriales.f__Cardiobacteriaceae.g__Cardiobacterium
## 2023-03-15 20:18:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Mimiviridae.g__Cafeteriavirus
## 2023-03-15 20:18:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Iridoviridae.g__Ranavirus
## 2023-03-15 20:18:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Fibrobacteres.c__Fibrobacteria.o__Fibrobacterales.f__Fibrobacteraceae.g__Fibrobacter
## 2023-03-15 20:18:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Nonlabens
## 2023-03-15 20:18:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Leuconostocaceae.g__Leuconostoc
## 2023-03-15 20:18:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Yaniella
## 2023-03-15 20:18:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Vibrio
## 2023-03-15 20:18:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Ponticaulis
## 2023-03-15 20:18:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Diaphorobacter
## 2023-03-15 20:18:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Melissococcus
## 2023-03-15 20:18:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Wolbachia
## 2023-03-15 20:18:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Peptostreptococcus
## 2023-03-15 20:18:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Hydrogenovibrio
## 2023-03-15 20:18:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sagittula
## 2023-03-15 20:18:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Granulicella
## 2023-03-15 20:18:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Betacoronavirus
## 2023-03-15 20:18:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Dongia
## 2023-03-15 20:18:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Pseudohongiella
## 2023-03-15 20:18:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Anaerobacillus
## 2023-03-15 20:18:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanobacteriaceae.g__Methanosphaera
## 2023-03-15 20:18:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Chlamydiaceae.g__Chlamydia
## 2023-03-15 20:18:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Lactobacillaceae.g__Sharpea
## 2023-03-15 20:18:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Gemmata
## 2023-03-15 20:18:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Anaerofustis
## 2023-03-15 20:18:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Sanguibacteroides
## 2023-03-15 20:18:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_III._Incertae_Sedis.g__Thermosediminibacter
## 2023-03-15 20:18:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Carboxydothermus
## 2023-03-15 20:18:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Caminibacter
## 2023-03-15 20:18:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfarculales.f__Desulfarculaceae.g__Dethiosulfatarculus
## 2023-03-15 20:18:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Halieaceae.g__Congregibacter
## 2023-03-15 20:18:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Blastomonas
## 2023-03-15 20:18:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bradyrhizobiaceae.g__Oligotropha
## 2023-03-15 20:18:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Microthrixaceae.g__Candidatus_Microthrix
## 2023-03-15 20:18:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Rouxiella
## 2023-03-15 20:18:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Phaeospirillum
## 2023-03-15 20:18:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Parvibaculum
## 2023-03-15 20:18:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Isosphaeraceae.g__Singulisphaera
## 2023-03-15 20:18:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Nostoc
## 2023-03-15 20:18:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Chitinimonas
## 2023-03-15 20:18:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Anaerovibrio
## 2023-03-15 20:18:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Marinovum
## 2023-03-15 20:18:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Enorma
## 2023-03-15 20:18:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Arcanobacterium
## 2023-03-15 20:18:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Zymomonas
## 2023-03-15 20:18:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Halonatronum
## 2023-03-15 20:18:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Sediminicola
## 2023-03-15 20:18:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Capnocytophaga
## 2023-03-15 20:18:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Lentisphaerae.c__Lentisphaeria.o__Lentisphaerales.f__Lentisphaeraceae.g__Lentisphaera
## 2023-03-15 20:18:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.g__Thermorudis
## 2023-03-15 20:18:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Aminomonas
## 2023-03-15 20:18:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Dinoroseobacter
## 2023-03-15 20:18:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chrysiogenetes.c__Chrysiogenetes.o__Chrysiogenales.f__Chrysiogenaceae.g__Desulfurispirillum
## 2023-03-15 20:18:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Pelagibacterium
## 2023-03-15 20:18:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Bacteroidaceae.g__Bacteroides
## 2023-03-15 20:18:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Ferrimicrobium
## 2023-03-15 20:18:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Hydrogenothermaceae.g__Persephonella
## 2023-03-15 20:18:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ahrensia
## 2023-03-15 20:18:51 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Kluyvera
## 2023-03-15 20:18:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Desulfurococcaceae.g__Ignicoccus
## 2023-03-15 20:18:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Haloterrigena
## 2023-03-15 20:18:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Leptotrichiaceae.g__Streptobacillus
## 2023-03-15 20:18:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Pseudolabrys
## 2023-03-15 20:18:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Stigonematales.g__Hapalosiphon
## 2023-03-15 20:18:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Dermatophilus
## 2023-03-15 20:18:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Chania
## 2023-03-15 20:18:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Glycomycetales.f__Glycomycetaceae.g__Haloglycomyces
## 2023-03-15 20:18:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Kineosporiales.f__Kineosporiaceae.g__Kineosporia
## 2023-03-15 20:18:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Polydnaviridae.g__Ichnovirus
## 2023-03-15 20:18:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Prauserella
## 2023-03-15 20:18:52 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Oceanospirillum
## 2023-03-15 20:18:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Confluentimicrobium
## 2023-03-15 20:18:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Polycyclovorans
## 2023-03-15 20:18:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Niabella
## 2023-03-15 20:18:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatitalea
## 2023-03-15 20:18:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobiaceae.g__Haloferula
## 2023-03-15 20:18:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Catelliglobosispora
## 2023-03-15 20:18:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Saccharibacter
## 2023-03-15 20:18:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Dechloromonas
## 2023-03-15 20:18:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Virgaviridae.g__Pomovirus
## 2023-03-15 20:18:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Micavibrio
## 2023-03-15 20:18:53 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Aliagarivorans
## 2023-03-15 20:18:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Kineosporiales.f__Kineosporiaceae.g__Angustibacter
## 2023-03-15 20:18:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Oleiagrimonas
## 2023-03-15 20:18:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.g__Timonella
## 2023-03-15 20:18:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Propionibacteriaceae.g__Propionimicrobium
## 2023-03-15 20:18:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Hydrogenibacillus
## 2023-03-15 20:18:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Elusimicrobia.c__Elusimicrobia.o__Elusimicrobiales.f__Elusimicrobiaceae.g__Elusimicrobium
## 2023-03-15 20:18:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Paenirhodobacter
## 2023-03-15 20:18:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Viridibacillus
## 2023-03-15 20:18:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Oerskovia
## 2023-03-15 20:18:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Faecalibaculum
## 2023-03-15 20:18:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Dicistroviridae.g__Cripavirus
## 2023-03-15 20:18:54 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Cesiribacter
## 2023-03-15 20:18:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Methylibium
## 2023-03-15 20:18:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Thermanaerovibrio
## 2023-03-15 20:18:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Kozakia
## 2023-03-15 20:18:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Actinocatenispora
## 2023-03-15 20:18:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Planktomarina
## 2023-03-15 20:18:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Senegalimassilia
## 2023-03-15 20:18:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Kibdelosporangium
## 2023-03-15 20:18:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zhouia
## 2023-03-15 20:18:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Arenimonas
## 2023-03-15 20:18:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Colwellia
## 2023-03-15 20:18:55 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Simplexvirus
## 2023-03-15 20:18:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Spounalikevirus
## 2023-03-15 20:18:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Halieaceae.g__Luminiphilus
## 2023-03-15 20:18:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseivivax
## 2023-03-15 20:18:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomonas
## 2023-03-15 20:18:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Croceibacter
## 2023-03-15 20:18:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Oceanibaculum
## 2023-03-15 20:18:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Ornatilinea
## 2023-03-15 20:18:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Tachikawaea
## 2023-03-15 20:18:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Silvibacterium
## 2023-03-15 20:18:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Sporolactobacillaceae.g__Tuberibacillus
## 2023-03-15 20:18:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Acidobacteria.c__Solibacteres.o__Solibacterales.f__Solibacteraceae.g__Candidatus_Solibacter
## 2023-03-15 20:18:56 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Thioalkalimicrobium
## 2023-03-15 20:18:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Opitutales.f__Opitutaceae.g__Cephaloticoccus
## 2023-03-15 20:18:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sneathiellales.f__Sneathiellaceae.g__Sneathiella
## 2023-03-15 20:18:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Flaviflexus
## 2023-03-15 20:18:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chrysiogenetes.c__Chrysiogenetes.o__Chrysiogenales.f__Chrysiogenaceae.g__Chrysiogenes
## 2023-03-15 20:18:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Rubinisphaera
## 2023-03-15 20:18:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Candidatus_Desulforudis
## 2023-03-15 20:18:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Wenxinia
## 2023-03-15 20:18:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Dokdonella
## 2023-03-15 20:18:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfobulbus
## 2023-03-15 20:18:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Thermonemataceae.g__Thermonema
## 2023-03-15 20:18:57 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Leptotrichiaceae.g__Sebaldella
## 2023-03-15 20:18:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Magnetococcales.f__Magnetococcaceae.g__Magnetococcus
## 2023-03-15 20:18:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Aminobacterium
## 2023-03-15 20:18:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Eggerthella
## 2023-03-15 20:18:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Caliciviridae.g__Vesivirus
## 2023-03-15 20:18:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfovibrionaceae.g__Lawsonia
## 2023-03-15 20:18:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Tanticharoenia
## 2023-03-15 20:18:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Gordoniaceae.g__Gordonia
## 2023-03-15 20:18:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Hahellaceae.g__Zooshikella
## 2023-03-15 20:18:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Shimia
## 2023-03-15 20:18:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Microscilla
## 2023-03-15 20:18:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Neptunomonas
## 2023-03-15 20:18:58 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Thermales.f__Thermaceae.g__Marinithermus
## 2023-03-15 20:18:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Nesiotobacter
## 2023-03-15 20:18:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Fodinicurvata
## 2023-03-15 20:18:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophaceae.g__Desulfomonile
## 2023-03-15 20:18:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Ferriphaselus
## 2023-03-15 20:18:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Puniceicoccales.f__Puniceicoccaceae.g__Coraliomargarita
## 2023-03-15 20:18:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cardiobacteriales.f__Cardiobacteriaceae.g__Dichelobacter
## 2023-03-15 20:18:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Rikenellaceae.g__Rikenella
## 2023-03-15 20:18:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Alkaliflexus
## 2023-03-15 20:18:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Aeromonas
## 2023-03-15 20:18:59 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Filomicrobium
## 2023-03-15 20:19:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methermicoccaceae.g__Methermicoccus
## 2023-03-15 20:19:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Bellilinea
## 2023-03-15 20:19:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thioflavicoccus
## 2023-03-15 20:19:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Echinicola
## 2023-03-15 20:19:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Neorickettsia
## 2023-03-15 20:19:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Geofilum
## 2023-03-15 20:19:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Limnochordia.o__Limnochordales.f__Limnochordaceae.g__Limnochorda
## 2023-03-15 20:19:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Rudaea
## 2023-03-15 20:19:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Ectothiorhodospira
## 2023-03-15 20:19:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.g__Caedibacter
## 2023-03-15 20:19:00 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Flexithrix
## 2023-03-15 20:19:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Glycomycetales.f__Glycomycetaceae.g__Glycomyces
## 2023-03-15 20:19:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Rikenellaceae.g__Mucinivorans
## 2023-03-15 20:19:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Weeksella
## 2023-03-15 20:19:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylobacteriaceae.g__Meganema
## 2023-03-15 20:19:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Rubrivivax
## 2023-03-15 20:19:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Leifsonia
## 2023-03-15 20:19:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Cyanobium
## 2023-03-15 20:19:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitinilyticum
## 2023-03-15 20:19:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Novispirillum
## 2023-03-15 20:19:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Gulosibacter
## 2023-03-15 20:19:01 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Terracoccus
## 2023-03-15 20:19:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Poxviridae.g__Capripoxvirus
## 2023-03-15 20:19:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Agrococcus
## 2023-03-15 20:19:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Verrucomicrobia.o__Methylacidiphilales.f__Methylacidiphilaceae.g__Methylacidiphilum
## 2023-03-15 20:19:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Sandarakinorhabdus
## 2023-03-15 20:19:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinomycetospora
## 2023-03-15 20:19:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Plantibacter
## 2023-03-15 20:19:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Vitellibacter
## 2023-03-15 20:19:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Mycoplasmatales.f__Mycoplasmataceae.g__Ureaplasma
## 2023-03-15 20:19:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sulfitobacter
## 2023-03-15 20:19:02 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Gordonibacter
## 2023-03-15 20:19:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Dehalococcoidia.g__Dehalogenimonas
## 2023-03-15 20:19:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Sciscionella
## 2023-03-15 20:19:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Arcticibacter
## 2023-03-15 20:19:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Oceanicaulis
## 2023-03-15 20:19:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Johnsonella
## 2023-03-15 20:19:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Skermanella
## 2023-03-15 20:19:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.g__Emaravirus
## 2023-03-15 20:19:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Flavihumibacter
## 2023-03-15 20:19:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Salinarchaeum
## 2023-03-15 20:19:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulforegula
## 2023-03-15 20:19:03 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Henriciella
## 2023-03-15 20:19:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Spirosoma
## 2023-03-15 20:19:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_III._Incertae_Sedis.g__Caldicellulosiruptor
## 2023-03-15 20:19:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Raoultella
## 2023-03-15 20:19:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Dictyoglomi.c__Dictyoglomia.o__Dictyoglomales.f__Dictyoglomaceae.g__Dictyoglomus
## 2023-03-15 20:19:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Rhodospirillum
## 2023-03-15 20:19:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Thiorhodospira
## 2023-03-15 20:19:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Actinobaculum
## 2023-03-15 20:19:04 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Citromicrobium
## 2023-03-15 20:19:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Roseburia
## 2023-03-15 20:19:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Anaerolinea
## 2023-03-15 20:19:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Haliscomenobacter
## 2023-03-15 20:19:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Magnetospira
## 2023-03-15 20:19:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Nakamurellales.f__Nakamurellaceae.g__Nakamurella
## 2023-03-15 20:19:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Planomonospora
## 2023-03-15 20:19:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Gimesia
## 2023-03-15 20:19:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Polynucleobacter
## 2023-03-15 20:19:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Maribius
## 2023-03-15 20:19:05 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Terrabacter
## 2023-03-15 20:19:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Mobilicoccus
## 2023-03-15 20:19:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Hamadaea
## 2023-03-15 20:19:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Bdellovibrionales.f__Bacteriovoracaceae.g__Bacteriovorax
## 2023-03-15 20:19:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Thermococcus
## 2023-03-15 20:19:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Paludibacterium
## 2023-03-15 20:19:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Catellicoccus
## 2023-03-15 20:19:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Marinilabilia
## 2023-03-15 20:19:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Saccharibacillus
## 2023-03-15 20:19:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Adenoviridae.g__Mastadenovirus
## 2023-03-15 20:19:06 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Xylella
## 2023-03-15 20:19:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Desulfurobacteriales.f__Desulfurobacteriaceae.g__Desulfurobacterium
## 2023-03-15 20:19:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylobacteriaceae.g__Microvirga
## 2023-03-15 20:19:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Allokutzneria
## 2023-03-15 20:19:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Roseivirga
## 2023-03-15 20:19:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halorhabdus
## 2023-03-15 20:19:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Elusimicrobia.c__Endomicrobia.o__Endomicrobiales.f__Endomicrobiaceae.g__Endomicrobium
## 2023-03-15 20:19:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Haematospirillum
## 2023-03-15 20:19:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Herpesvirales.f__Alloherpesviridae.g__Batrachovirus
## 2023-03-15 20:19:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Knoellia
## 2023-03-15 20:19:07 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Candidatus_Profftella
## 2023-03-15 20:19:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Holosporaceae.g__Holospora
## 2023-03-15 20:19:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Papillomaviridae.g__Lambdapapillomavirus
## 2023-03-15 20:19:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Orbales.f__Orbaceae.g__Frischella
## 2023-03-15 20:19:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Kiloniellales.f__Kiloniellaceae.g__Kiloniella
## 2023-03-15 20:19:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Hirschia
## 2023-03-15 20:19:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Apibacter
## 2023-03-15 20:19:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Methylocella
## 2023-03-15 20:19:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Orenia
## 2023-03-15 20:19:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Catenulisporales.f__Actinospicaceae.g__Actinospica
## 2023-03-15 20:19:08 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Flaviviridae.g__Pestivirus
## 2023-03-15 20:19:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Vulgatibacteraceae.g__Vulgatibacter
## 2023-03-15 20:19:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Deinococcales.f__Trueperaceae.g__Truepera
## 2023-03-15 20:19:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Saccharomonospora
## 2023-03-15 20:19:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Caldicoprobacteraceae.g__Caldicoprobacter
## 2023-03-15 20:19:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Tenacibaculum
## 2023-03-15 20:19:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Emticicia
## 2023-03-15 20:19:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Faecalicoccus
## 2023-03-15 20:19:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Xylophilus
## 2023-03-15 20:19:09 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Phycodnaviridae.g__Prasinovirus
## 2023-03-15 20:19:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Thermomonas
## 2023-03-15 20:19:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Sediminibacterium
## 2023-03-15 20:19:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Succinivibrionaceae.g__Succinivibrio
## 2023-03-15 20:19:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Aquimarina
## 2023-03-15 20:19:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Erysipelatoclostridium
## 2023-03-15 20:19:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Desulfuromonadaceae.g__Pelobacter
## 2023-03-15 20:19:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Thermobrachium
## 2023-03-15 20:19:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Mitsuokella
## 2023-03-15 20:19:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhizobiaceae.g__Neorhizobium
## 2023-03-15 20:19:10 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Propionibacteriaceae.g__Granulicoccus
## 2023-03-15 20:19:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Microbispora
## 2023-03-15 20:19:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Pseudomonadaceae.g__Oblitimonas
## 2023-03-15 20:19:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.g__Tropheryma
## 2023-03-15 20:19:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Polyangiaceae.g__Chondromyces
## 2023-03-15 20:19:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Solibacillus
## 2023-03-15 20:19:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Fibrella
## 2023-03-15 20:19:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Marivirga
## 2023-03-15 20:19:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Frankiales.f__Sporichthyaceae.g__Sporichthya
## 2023-03-15 20:19:11 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Rhodoluna
## 2023-03-15 20:19:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Candidatus_Korarchaeota.g__Candidatus_Korarchaeum
## 2023-03-15 20:19:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Kamptonema
## 2023-03-15 20:19:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfosarcina
## 2023-03-15 20:19:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Histophilus
## 2023-03-15 20:19:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Kinetoplastibacterium
## 2023-03-15 20:19:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Spiribacter
## 2023-03-15 20:19:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.o__Sphaerobacterales.f__Sphaerobacteraceae.g__Sphaerobacter
## 2023-03-15 20:19:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Segetibacter
## 2023-03-15 20:19:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Porticoccaceae.g__Porticoccus
## 2023-03-15 20:19:12 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Lebetimonas
## 2023-03-15 20:19:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Microtetraspora
## 2023-03-15 20:19:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Nitrospirae.c__Nitrospira.o__Nitrospirales.f__Nitrospiraceae.g__Candidatus_Magnetobacterium
## 2023-03-15 20:19:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Acetohalobium
## 2023-03-15 20:19:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Staphylococcaceae.g__Macrococcus
## 2023-03-15 20:19:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Listeriaceae.g__Listeria
## 2023-03-15 20:19:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Dicistroviridae.g__Aparavirus
## 2023-03-15 20:19:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Muricauda
## 2023-03-15 20:19:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Agreia
## 2023-03-15 20:19:13 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylosarcina
## 2023-03-15 20:19:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Coprobacillus
## 2023-03-15 20:19:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pluralibacter
## 2023-03-15 20:19:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Eikenella
## 2023-03-15 20:19:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.g__Anaerosporomusa
## 2023-03-15 20:19:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Riemerella
## 2023-03-15 20:19:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Symbiobacteriaceae.g__Symbiobacterium
## 2023-03-15 20:19:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Thermoactinomycetaceae.g__Thermoactinomyces
## 2023-03-15 20:19:14 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Methylophaga
## 2023-03-15 20:19:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobia_subdivision_3.g__Pedosphaera
## 2023-03-15 20:19:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Pseudobacteroides
## 2023-03-15 20:19:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Desulfurispora
## 2023-03-15 20:19:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Polyangiaceae.g__Sorangium
## 2023-03-15 20:19:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Anaerobaculum
## 2023-03-15 20:19:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Paracaedibacteraceae.g__Candidatus_Paracaedibacter
## 2023-03-15 20:19:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Candidatus_Puniceispirillum
## 2023-03-15 20:19:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Amantichitinum
## 2023-03-15 20:19:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Fervidobacteriaceae.g__Thermosipho
## 2023-03-15 20:19:15 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermabacteraceae.g__Dermabacter
## 2023-03-15 20:19:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Ornithobacterium
## 2023-03-15 20:19:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Defluviimonas
## 2023-03-15 20:19:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Chelatococcus
## 2023-03-15 20:19:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Hydrogenivirga
## 2023-03-15 20:19:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Candidatus_Soleaferrea
## 2023-03-15 20:19:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Asanoa
## 2023-03-15 20:19:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Candidatus_Arthromitus
## 2023-03-15 20:19:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Robinsoniella
## 2023-03-15 20:19:16 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.g__Candidatus_Hepatobacter
## 2023-03-15 20:19:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Campylobacteraceae.g__Campylobacter
## 2023-03-15 20:19:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Pirellula
## 2023-03-15 20:19:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Salimicrobium
## 2023-03-15 20:19:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Caulobacterales.f__Caulobacteraceae.g__Phenylobacterium
## 2023-03-15 20:19:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Belnapia
## 2023-03-15 20:19:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Arsenicicoccus
## 2023-03-15 20:19:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Hylemonella
## 2023-03-15 20:19:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Slackia
## 2023-03-15 20:19:17 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Pasteurella
## 2023-03-15 20:19:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Inquilinus
## 2023-03-15 20:19:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Amorphus
## 2023-03-15 20:19:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Planctomyces
## 2023-03-15 20:19:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Waikavirus
## 2023-03-15 20:19:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Nitrosomonadales.f__Nitrosomonadaceae.g__Nitrosospira
## 2023-03-15 20:19:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Kosakonia
## 2023-03-15 20:19:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Criblamydiaceae.g__Criblamydia
## 2023-03-15 20:19:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Mizugakiibacter
## 2023-03-15 20:19:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Tatumella
## 2023-03-15 20:19:18 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Methylopila
## 2023-03-15 20:19:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halapricum
## 2023-03-15 20:19:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Bifidobacteriales.f__Bifidobacteriaceae.g__Scardovia
## 2023-03-15 20:19:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Schleiferiaceae.g__Schleiferia
## 2023-03-15 20:19:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Cycloclasticus
## 2023-03-15 20:19:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanothermaceae.g__Methanothermus
## 2023-03-15 20:19:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Xanthobacter
## 2023-03-15 20:19:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Belliella
## 2023-03-15 20:19:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Acidobacteria.c__Blastocatellia.g__Chloracidobacterium
## 2023-03-15 20:19:19 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Entomoplasmatales.f__Entomoplasmataceae.g__Entomoplasma
## 2023-03-15 20:19:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Rufibacter
## 2023-03-15 20:19:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Thauera
## 2023-03-15 20:19:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Gemmatimonadetes.c__Gemmatimonadetes.o__Gemmatimonadales.f__Gemmatimonadaceae.g__Gemmatirosa
## 2023-03-15 20:19:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Pseudoflavonifractor
## 2023-03-15 20:19:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.g__Higrevirus
## 2023-03-15 20:19:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Xenococcus
## 2023-03-15 20:19:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thalassobius
## 2023-03-15 20:19:20 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Ilumatobacter
## 2023-03-15 20:19:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Rubritaleaceae.g__Rubritalea
## 2023-03-15 20:19:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Sphaerotilus
## 2023-03-15 20:19:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Papillomaviridae.g__Omegapapillomavirus
## 2023-03-15 20:19:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Aquincola
## 2023-03-15 20:19:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Lechevalieria
## 2023-03-15 20:19:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Staphylococcaceae.g__Jeotgalicoccus
## 2023-03-15 20:19:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Advenella
## 2023-03-15 20:19:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Thermocrispum
## 2023-03-15 20:19:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Oribacterium
## 2023-03-15 20:19:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Mangrovimonas
## 2023-03-15 20:19:21 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Lentimicrobiaceae.g__Lentimicrobium
## 2023-03-15 20:19:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Gracilibacillus
## 2023-03-15 20:19:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Candidatus_Aquiluna
## 2023-03-15 20:19:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Crocosphaera
## 2023-03-15 20:19:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Salivirus
## 2023-03-15 20:19:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pelagibaca
## 2023-03-15 20:19:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Fervidicella
## 2023-03-15 20:19:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophobacteraceae.g__Syntrophobacter
## 2023-03-15 20:19:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Celeribacter
## 2023-03-15 20:19:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Olleya
## 2023-03-15 20:19:22 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Regiella
## 2023-03-15 20:19:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Promicromonospora
## 2023-03-15 20:19:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Adhaeribacter
## 2023-03-15 20:19:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Enteractinococcus
## 2023-03-15 20:19:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Pusillimonas
## 2023-03-15 20:19:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermacoccaceae.g__Luteipulveratus
## 2023-03-15 20:19:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Ventosimonadaceae.g__Ventosimonas
## 2023-03-15 20:19:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Methanomassiliicoccales.f__Methanomassiliicoccaceae.g__Methanomassiliicoccus
## 2023-03-15 20:19:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.g__Reyranella
## 2023-03-15 20:19:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Sporomusaceae.g__Anaeromusa
## 2023-03-15 20:19:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Muribacter
## 2023-03-15 20:19:23 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfomicrobiaceae.g__Desulfomicrobium
## 2023-03-15 20:19:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfurellales.f__Desulfurellaceae.g__Desulfurella
## 2023-03-15 20:19:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Halothiobacillaceae.g__Halothiobacillus
## 2023-03-15 20:19:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Pseudarthrobacter
## 2023-03-15 20:19:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Sandaracinaceae.g__Sandaracinus
## 2023-03-15 20:19:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Haemophilus
## 2023-03-15 20:19:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Thermotogaceae.g__Thermotoga
## 2023-03-15 20:19:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Thiomicrospira
## 2023-03-15 20:19:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thioclava
## 2023-03-15 20:19:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Alcanivoracaceae.g__Kangiella
## 2023-03-15 20:19:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Bafinivirus
## 2023-03-15 20:19:24 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Zetaproteobacteria.o__Mariprofundales.f__Mariprofundaceae.g__Mariprofundus
## 2023-03-15 20:19:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Thermomonosporaceae.g__Spirillospora
## 2023-03-15 20:19:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Rubellimicrobium
## 2023-03-15 20:19:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Lewinella
## 2023-03-15 20:19:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Aneurinibacillus
## 2023-03-15 20:19:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Tepidicaulis
## 2023-03-15 20:19:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Vagococcus
## 2023-03-15 20:19:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Petrotogales.g__Defluviitoga
## 2023-03-15 20:19:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Candidatus_Cloacimonetes.g__Candidatus_Cloacimonas
## 2023-03-15 20:19:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Falsirhodobacter
## 2023-03-15 20:19:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Pseudopedobacter
## 2023-03-15 20:19:25 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Kineosphaera
## 2023-03-15 20:19:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiorhodovibrio
## 2023-03-15 20:19:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Rhodothermaeota.c__Balneolia.o__Balneolales.f__Balneolaceae.g__Gracilimonas
## 2023-03-15 20:19:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Pleomorphomonas
## 2023-03-15 20:19:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Hymenobacter
## 2023-03-15 20:19:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Aurantimonadaceae.g__Martelella
## 2023-03-15 20:19:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Cellulosilyticum
## 2023-03-15 20:19:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halorubrum
## 2023-03-15 20:19:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Opitutales.f__Opitutaceae.g__Opitutus
## 2023-03-15 20:19:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Paucibacter
## 2023-03-15 20:19:26 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Thermosulfurimonas
## 2023-03-15 20:19:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.g__Fangia
## 2023-03-15 20:19:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.g__Candidatus_Sulcia
## 2023-03-15 20:19:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Epulopiscium
## 2023-03-15 20:19:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Thermobacillus
## 2023-03-15 20:19:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Helcococcus
## 2023-03-15 20:19:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Phycodnaviridae.g__Prymnesiovirus
## 2023-03-15 20:19:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylocaldum
## 2023-03-15 20:19:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Carnimonas
## 2023-03-15 20:19:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Blastochloris
## 2023-03-15 20:19:27 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Salinisphaerales.f__Salinisphaeraceae.g__Salinisphaera
## 2023-03-15 20:19:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.g__Elioraea
## 2023-03-15 20:19:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Nonomuraea
## 2023-03-15 20:19:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Pimelobacter
## 2023-03-15 20:19:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiocapsa
## 2023-03-15 20:19:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhizobiaceae.g__Agrobacterium
## 2023-03-15 20:19:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Maricaulis
## 2023-03-15 20:19:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Nannocystaceae.g__Plesiocystis
## 2023-03-15 20:19:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Pandoraea
## 2023-03-15 20:19:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Rhodobacter
## 2023-03-15 20:19:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.f__Leptospiraceae.g__Turneriella
## 2023-03-15 20:19:28 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Parvimonas
## 2023-03-15 20:19:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Acetobacter
## 2023-03-15 20:19:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Flammeovirga
## 2023-03-15 20:19:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Nitrospirae.c__Nitrospira.o__Nitrospirales.f__Nitrospiraceae.g__Leptospirillum
## 2023-03-15 20:19:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Streptosporangium
## 2023-03-15 20:19:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Lutibaculum
## 2023-03-15 20:19:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.g__Exiguobacterium
## 2023-03-15 20:19:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Phycicoccus
## 2023-03-15 20:19:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Caldiserica.c__Caldisericia.o__Caldisericales.f__Caldisericaceae.g__Caldisericum
## 2023-03-15 20:19:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Varibaculum
## 2023-03-15 20:19:29 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Heliobacteriaceae.g__Heliobacterium
## 2023-03-15 20:19:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Cryptobacterium
## 2023-03-15 20:19:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Poxviridae.g__Betaentomopoxvirus
## 2023-03-15 20:19:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Jonquetella
## 2023-03-15 20:19:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseovarius
## 2023-03-15 20:19:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseobacter
## 2023-03-15 20:19:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Lampropedia
## 2023-03-15 20:19:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Trueperella
## 2023-03-15 20:19:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Dehalococcoidia.o__Dehalococcoidales.f__Dehalococcoidaceae.g__Dehalococcoides
## 2023-03-15 20:19:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.g__Deferrisoma
## 2023-03-15 20:19:30 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Sinomonas
## 2023-03-15 20:19:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Prosthecomicrobium
## 2023-03-15 20:19:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Chlorobaculum
## 2023-03-15 20:19:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halosimplex
## 2023-03-15 20:19:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Calditerrivibrio
## 2023-03-15 20:19:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Actinotalea
## 2023-03-15 20:19:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Phycodnaviridae.g__Chlorovirus
## 2023-03-15 20:19:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Enterococcus
## 2023-03-15 20:19:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Taylorella
## 2023-03-15 20:19:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Carnobacteriaceae.g__Allofustis
## 2023-03-15 20:19:31 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Acidaminococcales.f__Acidaminococcaceae.g__Succinispira
## 2023-03-15 20:19:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Astroviridae.g__Mamastrovirus
## 2023-03-15 20:19:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Bibersteinia
## 2023-03-15 20:19:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Caldilineae.o__Caldilineales.f__Caldilineaceae.g__Caldilinea
## 2023-03-15 20:19:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Roseateles
## 2023-03-15 20:19:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Wenzhouxiangellaceae.g__Wenzhouxiangella
## 2023-03-15 20:19:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Pontibacter
## 2023-03-15 20:19:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Veillonellales.f__Veillonellaceae.g__Dialister
## 2023-03-15 20:19:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Cobetia
## 2023-03-15 20:19:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophaceae.g__Desulfobacca
## 2023-03-15 20:19:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Erythrobacteraceae.g__Porphyrobacter
## 2023-03-15 20:19:32 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Desulfurococcaceae.g__Staphylothermus
## 2023-03-15 20:19:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Flavonifractor
## 2023-03-15 20:19:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Candidatus_Endolissoclinum
## 2023-03-15 20:19:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Hepatovirus
## 2023-03-15 20:19:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Geodermatophilales.f__Geodermatophilaceae.g__Blastococcus
## 2023-03-15 20:19:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Paeniclostridium
## 2023-03-15 20:19:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Cylindrospermopsis
## 2023-03-15 20:19:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Segniliparaceae.g__Segniliparus
## 2023-03-15 20:19:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinoalloteichus
## 2023-03-15 20:19:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Candidatus_Evansia
## 2023-03-15 20:19:33 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanobacteriaceae.g__Methanothermobacter
## 2023-03-15 20:19:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Stomatobaculum
## 2023-03-15 20:19:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Sodalis
## 2023-03-15 20:19:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Nafulsella
## 2023-03-15 20:19:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Sutterellaceae.g__Sutterella
## 2023-03-15 20:19:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Ehrlichia
## 2023-03-15 20:19:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Thalassospira
## 2023-03-15 20:19:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Loktanella
## 2023-03-15 20:19:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Veillonellales.f__Veillonellaceae.g__Veillonella
## 2023-03-15 20:19:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Achromobacter
## 2023-03-15 20:19:34 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Intestinibacter
## 2023-03-15 20:19:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Blautia
## 2023-03-15 20:19:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Mycetocola
## 2023-03-15 20:19:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Acaryochloris
## 2023-03-15 20:19:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Mardivirus
## 2023-03-15 20:19:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Fibrobacteres.c__Chitinispirillia.o__Chitinispirillales.f__Chitinispirillaceae.g__Chitinispirillum
## 2023-03-15 20:19:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Marinobacterium
## 2023-03-15 20:19:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiales_Family_XVII._Incertae_Sedis.g__Thermaerobacter
## 2023-03-15 20:19:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Thalassobacillus
## 2023-03-15 20:19:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Terrimonas
## 2023-03-15 20:19:35 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Pseudacidovorax
## 2023-03-15 20:19:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Jiangellales.f__Jiangellaceae.g__Jiangella
## 2023-03-15 20:19:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Uliginosibacterium
## 2023-03-15 20:19:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Halocynthiibacter
## 2023-03-15 20:19:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Caldimonas
## 2023-03-15 20:19:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Catenuloplanes
## 2023-03-15 20:19:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Polyomaviridae.g__Polyomavirus
## 2023-03-15 20:19:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prolixibacteraceae.g__Draconibacterium
## 2023-03-15 20:19:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Caenimonas
## 2023-03-15 20:19:36 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Hyphomicrobium
## 2023-03-15 20:19:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Catenulisporales.f__Catenulisporaceae.g__Catenulispora
## 2023-03-15 20:19:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Schlesneria
## 2023-03-15 20:19:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Moorella
## 2023-03-15 20:19:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Nepovirus
## 2023-03-15 20:19:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Retroviridae.g__Betaretrovirus
## 2023-03-15 20:19:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Leuconostocaceae.g__Fructobacillus
## 2023-03-15 20:19:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Thermovirga
## 2023-03-15 20:19:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Tymovirales.f__Tymoviridae.g__Tymovirus
## 2023-03-15 20:19:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Saccharicrinis
## 2023-03-15 20:19:37 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Retroviridae.g__Alpharetrovirus
## 2023-03-15 20:19:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfovibrionaceae.g__Desulfocurvus
## 2023-03-15 20:19:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.g__Lawsonella
## 2023-03-15 20:19:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Filifactor
## 2023-03-15 20:19:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinifilaceae.g__Marinifilum
## 2023-03-15 20:19:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Alicyclobacillaceae.g__Kyrpidia
## 2023-03-15 20:19:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Sicinivirus
## 2023-03-15 20:19:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Pseudonocardia
## 2023-03-15 20:19:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Acidaminococcales.f__Acidaminococcaceae.g__Phascolarctobacterium
## 2023-03-15 20:19:38 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Caldalkalibacillus
## 2023-03-15 20:19:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiales_Family_XIII._Incertae_Sedis.g__Casaltella
## 2023-03-15 20:19:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Nesterenkonia
## 2023-03-15 20:19:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Tyzzerella
## 2023-03-15 20:19:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Kosmotogales.f__Kosmotogaceae.g__Kosmotoga
## 2023-03-15 20:19:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfonatronaceae.g__Desulfonatronum
## 2023-03-15 20:19:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Acidobacteria.g__Thermoanaerobaculum
## 2023-03-15 20:19:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Rhadinovirus
## 2023-03-15 20:19:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Citricoccus
## 2023-03-15 20:19:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Finegoldia
## 2023-03-15 20:19:39 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Alicycliphilus
## 2023-03-15 20:19:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prevotellaceae.g__Prevotella
## 2023-03-15 20:19:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Planctopirus
## 2023-03-15 20:19:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfovermiculus
## 2023-03-15 20:19:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Propionicicella
## 2023-03-15 20:19:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Mycobacteriaceae.g__Amycolicicoccus
## 2023-03-15 20:19:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Oligella
## 2023-03-15 20:19:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Nitriliruptoria.o__Nitriliruptorales.f__Nitriliruptoraceae.g__Nitriliruptor
## 2023-03-15 20:19:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Acidithiobacillia.o__Acidithiobacillales.f__Thermithiobacillaceae.g__Thermithiobacillus
## 2023-03-15 20:19:40 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Mononegavirales.f__Paramyxoviridae.g__Rubulavirus
## 2023-03-15 20:19:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Acidihalobacter
## 2023-03-15 20:19:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Azohydromonas
## 2023-03-15 20:19:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Midichloriaceae.g__Candidatus_Midichloria
## 2023-03-15 20:19:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Actinoplanes
## 2023-03-15 20:19:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Aminobacter
## 2023-03-15 20:19:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Maribacter
## 2023-03-15 20:19:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Staphylococcaceae.g__Salinicoccus
## 2023-03-15 20:19:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zobellia
## 2023-03-15 20:19:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Rahnella
## 2023-03-15 20:19:41 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Acidothermales.f__Acidothermaceae.g__Acidothermus
## 2023-03-15 20:19:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Syntrophomonadaceae.g__Syntrophomonas
## 2023-03-15 20:19:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Labilitrichaceae.g__Labilithrix
## 2023-03-15 20:19:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Arsukibacterium
## 2023-03-15 20:19:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Thermales.f__Thermaceae.g__Meiothermus
## 2023-03-15 20:19:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Serinicoccus
## 2023-03-15 20:19:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Sulfurimonas
## 2023-03-15 20:19:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Nitratireductor
## 2023-03-15 20:19:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Cyanobacteria.o__Stigonematales.g__Chlorogloeopsis
## 2023-03-15 20:19:42 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Frigoribacterium
## 2023-03-15 20:19:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Frankiales.f__Cryptosporangiaceae.g__Cryptosporangium
## 2023-03-15 20:19:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Tymovirales.f__Alphaflexiviridae.g__Potexvirus
## 2023-03-15 20:19:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Mycoplasmatales.f__Mycoplasmataceae.g__Mycoplasma
## 2023-03-15 20:19:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Polymorphum
## 2023-03-15 20:19:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halanaerobiaceae.g__Halanaerobium
## 2023-03-15 20:19:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Klebsiella
## 2023-03-15 20:19:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Candidatus_Brocadiales.f__Candidatus_Brocadiaceae.g__Candidatus_Brocadia
## 2023-03-15 20:19:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophorhabdaceae.g__Syntrophorhabdus
## 2023-03-15 20:19:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Actibacterium
## 2023-03-15 20:19:43 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Chloroflexi.c__Chloroflexia.o__Chloroflexales.f__Chloroflexaceae.g__Chloroflexus
## 2023-03-15 20:19:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pantoea
## 2023-03-15 20:19:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Pararhodospirillum
## 2023-03-15 20:19:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Ruaniaceae.g__Ruania
## 2023-03-15 20:19:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ruegeria
## 2023-03-15 20:19:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Thermoanaerobacter
## 2023-03-15 20:19:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natronococcus
## 2023-03-15 20:19:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Halalkalibacillus
## 2023-03-15 20:19:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Rhodoferax
## 2023-03-15 20:19:44 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillales_Family_X._Incertae_Sedis.g__Thermicanus
## 2023-03-15 20:19:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Sporosarcina
## 2023-03-15 20:19:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Demequinaceae.g__Lysinimicrobium
## 2023-03-15 20:19:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Pilimelia
## 2023-03-15 20:19:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomicrobium
## 2023-03-15 20:19:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Partitiviridae.g__Betapartitivirus
## 2023-03-15 20:19:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Tepidanaerobacter
## 2023-03-15 20:19:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Desulfitibacter
## 2023-03-15 20:19:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.f__Poxviridae.g__Molluscipoxvirus
## 2023-03-15 20:19:45 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Aquitalea
## 2023-03-15 20:19:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Denitrovibrio
## 2023-03-15 20:19:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Arenibacter
## 2023-03-15 20:19:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Eubacterium
## 2023-03-15 20:19:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Syntrophomonadaceae.g__Syntrophothermus
## 2023-03-15 20:19:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylotenera
## 2023-03-15 20:19:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Luteimonas
## 2023-03-15 20:19:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Brachymonas
## 2023-03-15 20:19:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Proteiniphilum
## 2023-03-15 20:19:46 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Neisseria
## 2023-03-15 20:19:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Spo1virus
## 2023-03-15 20:19:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Shigella
## 2023-03-15 20:19:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Moraxellaceae.g__Alkanindiges
## 2023-03-15 20:19:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Thiothrix
## 2023-03-15 20:19:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Anaplasma
## 2023-03-15 20:19:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhizobiaceae.g__Kaistia
## 2023-03-15 20:19:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Acidaminococcales.f__Acidaminococcaceae.g__Acidaminococcus
## 2023-03-15 20:19:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Entomoplasmatales.f__Entomoplasmataceae.g__Mesoplasma
## 2023-03-15 20:19:47 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Anaerotruncus
## 2023-03-15 20:19:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfobacter
## 2023-03-15 20:19:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Acidimicrobium
## 2023-03-15 20:19:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Sanguibacteraceae.g__Sanguibacter
## 2023-03-15 20:19:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Sporomusaceae.g__Sporomusa
## 2023-03-15 20:19:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Fulvivirga
## 2023-03-15 20:19:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Azorhizobium
## 2023-03-15 20:19:48 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Euryhalocaulis
## 2023-03-15 20:19:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Thermoleophilia.o__Solirubrobacterales.f__Conexibacteraceae.g__Conexibacter
## 2023-03-15 20:19:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Alloactinosynnema
## 2023-03-15 20:19:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Moraxellaceae.g__Perlucidibaca
## 2023-03-15 20:19:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Marinobacter
## 2023-03-15 20:19:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Tannerella
## 2023-03-15 20:19:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermodesulfobiaceae.g__Coprothermobacter
## 2023-03-15 20:19:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Gryllotalpicola
## 2023-03-15 20:19:49 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Lachnoclostridium
## 2023-03-15 20:19:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Brackiella
## 2023-03-15 20:19:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Dactylosporangium
## 2023-03-15 20:19:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Pyrodictiaceae.g__Pyrolobus
## 2023-03-15 20:19:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Acidobacteria.c__Blastocatellia.g__Pyrinomonas
## 2023-03-15 20:19:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Halieaceae.g__Halioglobus
## 2023-03-15 20:19:50 INFO::Creating boxplot for categorical data, Without_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Caldanaerobius
maaslin_putative_group_likely <- function_Maaslin2(df_ACC_filter_putative_Voom_SNM, "Likely_combined", "Temp/putative_group_likely")
## [1] "Warning: Deleting existing log file: Temp/putative_group_likely/maaslin2.log"
## 2023-03-15 20:19:52 INFO::Writing function arguments to log file
## 2023-03-15 20:19:52 INFO::Verifying options selected are valid
## 2023-03-15 20:19:52 INFO::Determining format of input files
## 2023-03-15 20:19:52 INFO::Input format is data samples as rows and metadata samples as rows
## 2023-03-15 20:19:52 INFO::Formula for random effects: expr ~ (1 | SEX) + (1 | Ethnicity_Race) + (1 | AGE) + (1 | Neoplasm_Status) + (1 | Clinical_Status_3_Mo_Post.Op) + (1 | Surgical_margin) + (1 | ATYPICAL_MITOTIC_FIGURES)
## 2023-03-15 20:19:52 INFO::Formula for fixed effects: expr ~  Likely_combined
## 2023-03-15 20:19:52 INFO::Filter data based on min abundance and min prevalence
## 2023-03-15 20:19:52 INFO::Total samples in data: 77
## 2023-03-15 20:19:52 INFO::Min samples required with min abundance for a feature not to be filtered: 0.000000
## 2023-03-15 20:19:52 INFO::Total filtered features: 5
## 2023-03-15 20:19:52 INFO::Filtered feature names from abundance and prevalence filtering: k__Viruses.f__Hytrosaviridae.g__Muscavirus, k__Viruses.f__Closteroviridae.g__Crinivirus, k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halomicrobium, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Azovibrio, k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Psychrobacillus
## 2023-03-15 20:19:52 INFO::Total filtered features with variance filtering: 0
## 2023-03-15 20:19:52 INFO::Filtered feature names from variance filtering:
## 2023-03-15 20:19:52 INFO::Running selected normalization method: NONE
## 2023-03-15 20:19:52 INFO::Applying z-score to standardize continuous metadata
## 2023-03-15 20:19:52 INFO::Running selected transform method: NONE
## 2023-03-15 20:19:52 INFO::Running selected analysis method: LM
## 2023-03-15 20:19:52 INFO::Creating cluster of 6 R processes
## 2023-03-15 20:20:20 INFO::Counting total values for each feature
## 2023-03-15 20:20:20 WARNING::Deleting existing residuals file: Temp/putative_group_likely/residuals.rds
## 2023-03-15 20:20:20 INFO::Writing residuals to file Temp/putative_group_likely/residuals.rds
## 2023-03-15 20:20:20 WARNING::Deleting existing fitted file: Temp/putative_group_likely/fitted.rds
## 2023-03-15 20:20:20 INFO::Writing fitted values to file Temp/putative_group_likely/fitted.rds
## 2023-03-15 20:20:20 WARNING::Deleting existing ranef file: Temp/putative_group_likely/ranef.rds
## 2023-03-15 20:20:20 INFO::Writing extracted random effects to file Temp/putative_group_likely/ranef.rds
## 2023-03-15 20:20:20 INFO::Writing all results to file (ordered by increasing q-values): Temp/putative_group_likely/all_results.tsv
## 2023-03-15 20:20:20 INFO::Writing the significant results (those which are less than or equal to the threshold of 0.250000 ) to file (ordered by increasing q-values): Temp/putative_group_likely/significant_results.tsv
## 2023-03-15 20:20:20 INFO::Writing heatmap of significant results to file: Temp/putative_group_likely/heatmap.pdf
## Warning in xtfrm.data.frame(x): cannot xtfrm data frames
## [1] "There is not enough metadata in the associations to create a heatmap plot. Please review the associations in text output file."
## 2023-03-15 20:20:20 INFO::Writing association plots (one for each significant association) to output folder: Temp/putative_group_likely
## 2023-03-15 20:20:20 INFO::Plotting associations from most to least significant, grouped by metadata
## 2023-03-15 20:20:20 INFO::Plotting data for metadata number 1, Likely_combined
## 2023-03-15 20:20:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Sfi1unalikevirus
## 2023-03-15 20:20:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Poxviridae.g__Parapoxvirus
## 2023-03-15 20:20:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Bicaudaviridae.g__Bicaudavirus
## 2023-03-15 20:20:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Papillomaviridae.g__Betapapillomavirus
## 2023-03-15 20:20:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Bcep22likevirus
## 2023-03-15 20:20:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Poxviridae.g__Cervidpoxvirus
## 2023-03-15 20:20:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Lambdalikevirus
## 2023-03-15 20:20:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Anelloviridae.g__Alphatorquevirus
## 2023-03-15 20:20:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.g__Pithovirus
## 2023-03-15 20:20:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Barnyardlikevirus
## 2023-03-15 20:20:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Closteroviridae.g__Closterovirus
## 2023-03-15 20:20:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Fuselloviridae.g__Alphafusellovirus
## 2023-03-15 20:20:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Retroviridae.g__Lentivirus
## 2023-03-15 20:20:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Mononegavirales.f__Nyamiviridae.g__Nyavirus
## 2023-03-15 20:20:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Andromedalikevirus
## 2023-03-15 20:20:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Closteroviridae.g__Ampelovirus
## 2023-03-15 20:20:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Papillomaviridae.g__Gammapapillomavirus
## 2023-03-15 20:20:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Herpesvirales.f__Malacoherpesviridae.g__Ostreavirus
## 2023-03-15 20:20:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.g__Bacilladnavirus
## 2023-03-15 20:20:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Skunalikevirus
## 2023-03-15 20:20:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Cp220likevirus
## 2023-03-15 20:20:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Phikzlikevirus
## 2023-03-15 20:20:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Orthomyxoviridae.g__Influenzavirus_C
## 2023-03-15 20:20:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phi29likevirus
## 2023-03-15 20:20:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Caulimoviridae.g__Cavemovirus
## 2023-03-15 20:20:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Anelloviridae.g__Betatorquevirus
## 2023-03-15 20:20:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Caulimoviridae.g__Caulimovirus
## 2023-03-15 20:20:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Parvoviridae.g__Protoparvovirus
## 2023-03-15 20:20:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Bromoviridae.g__Alfamovirus
## 2023-03-15 20:20:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Sp6likevirus
## 2023-03-15 20:20:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Hepadnaviridae.g__Orthohepadnavirus
## 2023-03-15 20:20:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Tymovirales.f__Alphaflexiviridae.g__Allexivirus
## 2023-03-15 20:20:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Parvoviridae.g__Ambidensovirus
## 2023-03-15 20:20:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Comovirus
## 2023-03-15 20:20:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Bromoviridae.g__Ilarvirus
## 2023-03-15 20:20:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Narnaviridae.g__Narnavirus
## 2023-03-15 20:20:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Totiviridae.g__Totivirus
## 2023-03-15 20:20:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Potyviridae.g__Tritimovirus
## 2023-03-15 20:20:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Papillomaviridae.g__Dyopipapillomavirus
## 2023-03-15 20:20:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Siccibacter
## 2023-03-15 20:20:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Neosynechococcus
## 2023-03-15 20:20:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Dolichospermum
## 2023-03-15 20:20:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Ponticaulis
## 2023-03-15 20:20:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Altibacter
## 2023-03-15 20:20:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Methanomassiliicoccales.f__Methanomassiliicoccaceae.g__Candidatus_Methanomethylophilus
## 2023-03-15 20:20:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Nitritalea
## 2023-03-15 20:20:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Mangrovibacter
## 2023-03-15 20:20:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Thalassotalea
## 2023-03-15 20:20:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Pseudoramibacter
## 2023-03-15 20:20:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Reinekea
## 2023-03-15 20:20:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Natronomonas
## 2023-03-15 20:20:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natronobacterium
## 2023-03-15 20:20:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfospira
## 2023-03-15 20:20:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Arenitalea
## 2023-03-15 20:20:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Thermoactinomycetaceae.g__Shimazuella
## 2023-03-15 20:20:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Gaetbulibacter
## 2023-03-15 20:20:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Basilea
## 2023-03-15 20:20:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Alicyclobacillaceae.g__Effusibacillus
## 2023-03-15 20:20:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitinibacter
## 2023-03-15 20:20:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanoregulaceae.g__Methanolinea
## 2023-03-15 20:20:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanolacinia
## 2023-03-15 20:20:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanococci.o__Methanococcales.f__Methanocaldococcaceae.g__Methanotorris
## 2023-03-15 20:20:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Myxosarcina
## 2023-03-15 20:20:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Gayadomonas
## 2023-03-15 20:20:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomarinum
## 2023-03-15 20:20:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Jeotgalibacillus
## 2023-03-15 20:20:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Zymobacter
## 2023-03-15 20:20:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Paeniglutamicibacter
## 2023-03-15 20:20:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halobellus
## 2023-03-15 20:20:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Flaviramulus
## 2023-03-15 20:20:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Cyclobacterium
## 2023-03-15 20:20:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Sideroxydans
## 2023-03-15 20:20:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Sediminibacillus
## 2023-03-15 20:20:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Thioalkalimicrobium
## 2023-03-15 20:20:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Saccharospirillum
## 2023-03-15 20:20:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Robiginitalea
## 2023-03-15 20:20:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Caldimicrobium
## 2023-03-15 20:20:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Actinopolymorpha
## 2023-03-15 20:20:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Candidatus_Phaeomarinobacter
## 2023-03-15 20:20:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Candidatus_Koribacter
## 2023-03-15 20:20:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermabacteraceae.g__Helcobacillus
## 2023-03-15 20:20:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Centipeda
## 2023-03-15 20:20:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Nocardiopsaceae.g__Allosalinactinospora
## 2023-03-15 20:20:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ponticoccus
## 2023-03-15 20:20:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halogranum
## 2023-03-15 20:20:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Nautilia
## 2023-03-15 20:20:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Obesumbacterium
## 2023-03-15 20:20:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Desulfurobacteriales.f__Desulfurobacteriaceae.g__Thermovibrio
## 2023-03-15 20:20:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Alkalilimnicola
## 2023-03-15 20:20:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Aliiroseovarius
## 2023-03-15 20:20:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halobacterium
## 2023-03-15 20:20:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.g__Thermosulfidibacter
## 2023-03-15 20:20:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Stigonematales.g__Mastigocladopsis
## 2023-03-15 20:20:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Thaumarchaeota.o__Nitrosopumilales.f__Nitrosopumilaceae.g__Candidatus_Nitrosoarchaeum
## 2023-03-15 20:20:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Mesoaciditogales.f__Mesoaciditogaceae.g__Mesoaciditoga
## 2023-03-15 20:20:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Wolinella
## 2023-03-15 20:20:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Thaumarchaeota.o__Nitrosopumilales.f__Nitrosopumilaceae.g__Nitrosopumilus
## 2023-03-15 20:20:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Marinococcus
## 2023-03-15 20:20:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfobacula
## 2023-03-15 20:20:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanoculleus
## 2023-03-15 20:20:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Spongiibacteraceae.g__Dasania
## 2023-03-15 20:20:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Thermincola
## 2023-03-15 20:20:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Shuttleworthia
## 2023-03-15 20:20:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylovorus
## 2023-03-15 20:20:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thalassobium
## 2023-03-15 20:20:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.o__Thermomicrobiales.f__Thermomicrobiaceae.g__Thermomicrobium
## 2023-03-15 20:20:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Thermocrinis
## 2023-03-15 20:20:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Arhodomonas
## 2023-03-15 20:20:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanofollis
## 2023-03-15 20:20:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Mesonia
## 2023-03-15 20:20:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Basfia
## 2023-03-15 20:20:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Candidatus_Atelocyanobacterium
## 2023-03-15 20:20:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Thalassolituus
## 2023-03-15 20:20:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Allobaculum
## 2023-03-15 20:20:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Coriobacterium
## 2023-03-15 20:20:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Amphritea
## 2023-03-15 20:20:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Marinagarivorans
## 2023-03-15 20:20:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Flagellimonas
## 2023-03-15 20:20:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Solitalea
## 2023-03-15 20:20:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Thermoplasmatales.f__Ferroplasmaceae.g__Ferroplasma
## 2023-03-15 20:20:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Thermoproteales.f__Thermoproteaceae.g__Vulcanisaeta
## 2023-03-15 20:20:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Bermanella
## 2023-03-15 20:20:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Afifella
## 2023-03-15 20:20:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Rummeliibacillus
## 2023-03-15 20:20:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfurivibrio
## 2023-03-15 20:20:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Salinibacillus
## 2023-03-15 20:20:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Pseudobutyrivibrio
## 2023-03-15 20:20:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Kosmotogales.f__Kosmotogaceae.g__Mesotoga
## 2023-03-15 20:20:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Paracaedibacteraceae.g__Candidatus_Odyssella
## 2023-03-15 20:20:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Holdemania
## 2023-03-15 20:20:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Balneatrix
## 2023-03-15 20:20:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Sulfuricurvum
## 2023-03-15 20:20:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Dielma
## 2023-03-15 20:20:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Leminorella
## 2023-03-15 20:20:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Terribacillus
## 2023-03-15 20:20:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseibacterium
## 2023-03-15 20:20:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Lentzea
## 2023-03-15 20:20:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Lacimicrobium
## 2023-03-15 20:20:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Ardenticatenia.o__Ardenticatenales.f__Ardenticatenaceae.g__Ardenticatena
## 2023-03-15 20:20:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Halostagnicola
## 2023-03-15 20:20:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Adlercreutzia
## 2023-03-15 20:20:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Legionellaceae.g__Tatlockia
## 2023-03-15 20:20:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Candidatus_Photodesmus
## 2023-03-15 20:20:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfonatronospira
## 2023-03-15 20:20:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Nereida
## 2023-03-15 20:20:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Paucisalibacillus
## 2023-03-15 20:20:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Cloacibacillus
## 2023-03-15 20:20:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Thaumarchaeota.g__Candidatus_Nitrosotenuis
## 2023-03-15 20:20:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Subdoligranulum
## 2023-03-15 20:20:37 INFO::Creating boxplot for categorical data, Likely_combined vs contaminant1Harvard
## 2023-03-15 20:20:38 INFO::Creating boxplot for categorical data, Likely_combined vs contaminant2HarvardCanadaBaylorWashU
## 2023-03-15 20:20:38 INFO::Creating boxplot for categorical data, Likely_combined vs contaminant3AllSeqCenters
## 2023-03-15 20:20:38 INFO::Creating boxplot for categorical data, Likely_combined vs contaminant4RandomSpikesHarvard
## 2023-03-15 20:20:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Halolactibacillus
## 2023-03-15 20:20:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Sfi21dtunalikevirus
## 2023-03-15 20:20:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.g__Hoyosella
## 2023-03-15 20:20:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__T5likevirus
## 2023-03-15 20:20:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__N4likevirus
## 2023-03-15 20:20:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Tymovirales.f__Betaflexiviridae.g__Trichovirus
## 2023-03-15 20:20:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanoregulaceae.g__Methanosphaerula
## 2023-03-15 20:20:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Halopiger
## 2023-03-15 20:20:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phikmvlikevirus
## 2023-03-15 20:20:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Sellimonas
## 2023-03-15 20:20:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Virgaviridae.g__Pecluvirus
## 2023-03-15 20:20:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Thalassomonas
## 2023-03-15 20:20:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Sedimenticola
## 2023-03-15 20:20:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Haloarcula
## 2023-03-15 20:20:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Catenovulum
## 2023-03-15 20:20:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Gramella
## 2023-03-15 20:20:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__L5likevirus
## 2023-03-15 20:20:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Pyrodictiaceae.g__Pyrodictium
## 2023-03-15 20:20:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Aromatoleum
## 2023-03-15 20:20:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Pyrococcus
## 2023-03-15 20:20:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natronorubrum
## 2023-03-15 20:20:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Microvirgula
## 2023-03-15 20:20:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Prosthecochloris
## 2023-03-15 20:20:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halanaeroarchaeum
## 2023-03-15 20:20:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Puniceibacterium
## 2023-03-15 20:20:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.g__Aciduliprofundum
## 2023-03-15 20:20:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.g__Thermobaculum
## 2023-03-15 20:20:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Terasakiella
## 2023-03-15 20:20:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Rudanella
## 2023-03-15 20:20:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiocystis
## 2023-03-15 20:20:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Aliihoeflea
## 2023-03-15 20:20:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylothermaceae.g__Methylohalobius
## 2023-03-15 20:20:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Deferribacter
## 2023-03-15 20:20:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Cryomorphaceae.g__Owenweeksia
## 2023-03-15 20:20:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prolixibacteraceae.g__Prolixibacter
## 2023-03-15 20:20:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Rubidibacter
## 2023-03-15 20:20:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Youngiibacter
## 2023-03-15 20:20:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Agarivorans
## 2023-03-15 20:20:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Mimiviridae.g__Mimivirus
## 2023-03-15 20:20:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Candidatus_Methylopumilus
## 2023-03-15 20:20:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Nisaea
## 2023-03-15 20:20:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Acidobacteria.c__Solibacteres.o__Solibacterales.g__Bryobacter
## 2023-03-15 20:20:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.c__Spartobacteria.g__Candidatus_Xiphinematobacter
## 2023-03-15 20:20:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Azonexus
## 2023-03-15 20:20:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Coprobacter
## 2023-03-15 20:20:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Salimicrobium
## 2023-03-15 20:20:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Thermodesulfatator
## 2023-03-15 20:20:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chrysiogenetes.c__Chrysiogenetes.o__Chrysiogenales.f__Chrysiogenaceae.g__Chrysiogenes
## 2023-03-15 20:20:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Aliiglaciecola
## 2023-03-15 20:20:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Fusobacteriaceae.g__Ilyobacter
## 2023-03-15 20:20:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Renibacterium
## 2023-03-15 20:20:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Leeia
## 2023-03-15 20:20:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Tolumonas
## 2023-03-15 20:20:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Caliciviridae.g__Vesivirus
## 2023-03-15 20:20:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Leeuwenhoekiella
## 2023-03-15 20:20:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Marinimicrobium
## 2023-03-15 20:20:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Gynuella
## 2023-03-15 20:20:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Ignavibacteriae.c__Ignavibacteria.o__Ignavibacteriales.f__Melioribacteraceae.g__Melioribacter
## 2023-03-15 20:20:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Salinivibrio
## 2023-03-15 20:20:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Yokenella
## 2023-03-15 20:20:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Oxalobacteraceae.g__Pseudoduganella
## 2023-03-15 20:20:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Parvularculales.f__Parvularculaceae.g__Parvularcula
## 2023-03-15 20:20:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Thaumarchaeota.c__Nitrososphaeria.o__Nitrososphaerales.f__Nitrososphaeraceae.g__Nitrososphaera
## 2023-03-15 20:20:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.o__Haloplasmatales.f__Haloplasmataceae.g__Haloplasma
## 2023-03-15 20:20:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Dactylococcopsis
## 2023-03-15 20:20:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Sphingorhabdus
## 2023-03-15 20:20:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Croceibacter
## 2023-03-15 20:20:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Desulfuromonadaceae.g__Desulfuromonas
## 2023-03-15 20:20:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Richelia
## 2023-03-15 20:20:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Anaerophaga
## 2023-03-15 20:20:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Thermotogaceae.g__Pseudothermotoga
## 2023-03-15 20:20:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Chroococcidiopsis
## 2023-03-15 20:20:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Lentibacillus
## 2023-03-15 20:20:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Crocinitomicaceae.g__Crocinitomix
## 2023-03-15 20:20:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Bromoviridae.g__Cucumovirus
## 2023-03-15 20:20:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Candidatus_Neoehrlichia
## 2023-03-15 20:20:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Pelodictyon
## 2023-03-15 20:20:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Dethiosulfovibrio
## 2023-03-15 20:20:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halarchaeum
## 2023-03-15 20:20:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Chloroflexia.o__Chloroflexales.f__Oscillochloridaceae.g__Oscillochloris
## 2023-03-15 20:20:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Actinotignum
## 2023-03-15 20:20:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halalkalicoccus
## 2023-03-15 20:20:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Aeribacillus
## 2023-03-15 20:20:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.f__Competibacteraceae.g__Candidatus_Competibacter
## 2023-03-15 20:20:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Archaeoglobi.o__Archaeoglobales.f__Archaeoglobaceae.g__Geoglobus
## 2023-03-15 20:20:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ketogulonicigenium
## 2023-03-15 20:20:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Paraoerskovia
## 2023-03-15 20:20:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Aurantimonadaceae.g__Fulvimarina
## 2023-03-15 20:20:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Kandleria
## 2023-03-15 20:20:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pragia
## 2023-03-15 20:20:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Citreicella
## 2023-03-15 20:20:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatirhabdium
## 2023-03-15 20:20:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Geovibrio
## 2023-03-15 20:20:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Candidatus_Ruthia
## 2023-03-15 20:20:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Halotalea
## 2023-03-15 20:20:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Jejuia
## 2023-03-15 20:20:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Lymphocryptovirus
## 2023-03-15 20:20:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Fusobacteriaceae.g__Cetobacterium
## 2023-03-15 20:20:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Legionellaceae.g__Fluoribacter
## 2023-03-15 20:20:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Pleurocapsa
## 2023-03-15 20:20:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.g__Methyloceanibacter
## 2023-03-15 20:20:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Marinospirillum
## 2023-03-15 20:20:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Ammonifex
## 2023-03-15 20:20:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Blastopirellula
## 2023-03-15 20:20:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.g__Tenuivirus
## 2023-03-15 20:20:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Ignatzschineria
## 2023-03-15 20:20:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Thioploca
## 2023-03-15 20:20:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.g__Nitratiruptor
## 2023-03-15 20:20:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermodesulfobiaceae.g__Thermodesulfobium
## 2023-03-15 20:20:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Deefgea
## 2023-03-15 20:20:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylococcus
## 2023-03-15 20:20:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Leadbetterella
## 2023-03-15 20:20:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Holdemanella
## 2023-03-15 20:20:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Poxviridae.g__Alphaentomopoxvirus
## 2023-03-15 20:20:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Poxviridae.g__Yatapoxvirus
## 2023-03-15 20:20:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Aerococcaceae.g__Eremococcus
## 2023-03-15 20:20:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Pseudaminobacter
## 2023-03-15 20:20:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Acaricomes
## 2023-03-15 20:20:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_IV._Incertae_Sedis.g__Mahella
## 2023-03-15 20:20:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Wohlfahrtiimonas
## 2023-03-15 20:20:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Amphibacillus
## 2023-03-15 20:20:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Simiduia
## 2023-03-15 20:20:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Bdellovibrionales.f__Halobacteriovoraceae.g__Halobacteriovorax
## 2023-03-15 20:20:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.o__Bacteroidetes_Order_II._Incertae_sedis.f__Rhodothermaceae.g__Salisaeta
## 2023-03-15 20:20:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__I3likevirus
## 2023-03-15 20:20:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Herbiconiux
## 2023-03-15 20:20:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Chelonobacter
## 2023-03-15 20:20:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Thermanaerothrix
## 2023-03-15 20:20:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Cyanobacterium
## 2023-03-15 20:20:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Cryobacterium
## 2023-03-15 20:20:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Pyramidobacter
## 2023-03-15 20:20:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Phaeodactylibacter
## 2023-03-15 20:20:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sedimentitalea
## 2023-03-15 20:20:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Mimiviridae.g__Cafeteriavirus
## 2023-03-15 20:20:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.o__Bacteroidetes_Order_II._Incertae_sedis.f__Rhodothermaceae.g__Salinibacter
## 2023-03-15 20:20:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Thermosynechococcus
## 2023-03-15 20:20:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Thermomonosporaceae.g__Thermomonospora
## 2023-03-15 20:20:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Spirochaetaceae.g__Salinispira
## 2023-03-15 20:20:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Bifidobacteriales.f__Bifidobacteriaceae.g__Parascardovia
## 2023-03-15 20:20:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Galbibacter
## 2023-03-15 20:20:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Cucumibacter
## 2023-03-15 20:20:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Mariniradius
## 2023-03-15 20:20:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Joostella
## 2023-03-15 20:20:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Hellea
## 2023-03-15 20:20:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Campylobacteraceae.g__Sulfurospirillum
## 2023-03-15 20:20:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Hepeviridae.g__Piscihepevirus
## 2023-03-15 20:20:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Myxococcaceae.g__Corallococcus
## 2023-03-15 20:20:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Cryocola
## 2023-03-15 20:20:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Flexilinea
## 2023-03-15 20:20:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Siansivirga
## 2023-03-15 20:20:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Nocardiopsaceae.g__Streptomonospora
## 2023-03-15 20:20:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Kerstersia
## 2023-03-15 20:20:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Bunyaviridae.g__Orthobunyavirus
## 2023-03-15 20:20:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Brenneria
## 2023-03-15 20:20:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Franconibacter
## 2023-03-15 20:20:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Gottschalkia
## 2023-03-15 20:20:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halanaerobiaceae.g__Halothermothrix
## 2023-03-15 20:20:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Salegentibacter
## 2023-03-15 20:20:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Shimwellia
## 2023-03-15 20:20:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Marinilabilia
## 2023-03-15 20:20:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thalassobacter
## 2023-03-15 20:21:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Chloroherpeton
## 2023-03-15 20:21:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Oxobacter
## 2023-03-15 20:21:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Microchaetaceae.g__Microchaete
## 2023-03-15 20:21:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Beggiatoa
## 2023-03-15 20:21:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Aestuariivita
## 2023-03-15 20:21:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Betacoronavirus
## 2023-03-15 20:21:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Enterovirus
## 2023-03-15 20:21:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Paramesorhizobium
## 2023-03-15 20:21:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Riesia
## 2023-03-15 20:21:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Melissococcus
## 2023-03-15 20:21:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Pseudohongiella
## 2023-03-15 20:21:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinopolysporales.f__Actinopolysporaceae.g__Actinopolyspora
## 2023-03-15 20:21:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sagittula
## 2023-03-15 20:21:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Salinimicrobium
## 2023-03-15 20:21:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Anaerobacillus
## 2023-03-15 20:21:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudorhodobacter
## 2023-03-15 20:21:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Carnobacteriaceae.g__Alloiococcus
## 2023-03-15 20:21:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Yonghaparkia
## 2023-03-15 20:21:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Silanimonas
## 2023-03-15 20:21:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Elusimicrobia.c__Elusimicrobia.o__Elusimicrobiales.f__Elusimicrobiaceae.g__Elusimicrobium
## 2023-03-15 20:21:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Aliagarivorans
## 2023-03-15 20:21:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfocapsa
## 2023-03-15 20:21:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sediminimonas
## 2023-03-15 20:21:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Thermopetrobacter
## 2023-03-15 20:21:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Sporomusaceae.g__Pelosinus
## 2023-03-15 20:21:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylovulum
## 2023-03-15 20:21:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Isosphaeraceae.g__Isosphaera
## 2023-03-15 20:21:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Longilinea
## 2023-03-15 20:21:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Tistrella
## 2023-03-15 20:21:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Gluconacetobacter
## 2023-03-15 20:21:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Halobacteroides
## 2023-03-15 20:21:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Levilinea
## 2023-03-15 20:21:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Kushneria
## 2023-03-15 20:21:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Celeribacter
## 2023-03-15 20:21:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Salipiger
## 2023-03-15 20:21:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Christensenellaceae.g__Christensenella
## 2023-03-15 20:21:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Candidatus_Accumulibacter
## 2023-03-15 20:21:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Vitreoscilla
## 2023-03-15 20:21:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Rhodospirillum
## 2023-03-15 20:21:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfonatronovibrio
## 2023-03-15 20:21:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Marinovum
## 2023-03-15 20:21:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oleiphilaceae.g__Oleiphilus
## 2023-03-15 20:21:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Moranella
## 2023-03-15 20:21:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Sandarakinorhabdus
## 2023-03-15 20:21:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.g__Candidatus_Babela
## 2023-03-15 20:21:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Oceaniovalibus
## 2023-03-15 20:21:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Marvinbryantia
## 2023-03-15 20:21:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Opitutales.f__Opitutaceae.g__Cephaloticoccus
## 2023-03-15 20:21:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prevotellaceae.g__Hallella
## 2023-03-15 20:21:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Promicromonospora
## 2023-03-15 20:21:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Maritalea
## 2023-03-15 20:21:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Acidobacteria.c__Solibacteres.o__Solibacterales.f__Solibacteraceae.g__Candidatus_Solibacter
## 2023-03-15 20:21:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Stappia
## 2023-03-15 20:21:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Halieaceae.g__Congregibacter
## 2023-03-15 20:21:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Kineosporiales.f__Kineosporiaceae.g__Angustibacter
## 2023-03-15 20:21:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitiniphilus
## 2023-03-15 20:21:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Hydrogenothermaceae.g__Persephonella
## 2023-03-15 20:21:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Mucispirillum
## 2023-03-15 20:21:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Lactobacillaceae.g__Sharpea
## 2023-03-15 20:21:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Wenxinia
## 2023-03-15 20:21:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Thiolapillus
## 2023-03-15 20:21:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Frateuria
## 2023-03-15 20:21:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Limnochordia.o__Limnochordales.f__Limnochordaceae.g__Limnochorda
## 2023-03-15 20:21:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Synergistes
## 2023-03-15 20:21:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudodonghicola
## 2023-03-15 20:21:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Ishikawaella
## 2023-03-15 20:21:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Thermales.f__Thermaceae.g__Oceanithermus
## 2023-03-15 20:21:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Wolbachia
## 2023-03-15 20:21:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Acidobacterium
## 2023-03-15 20:21:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Kordiimonadales.f__Kordiimonadaceae.g__Kordiimonas
## 2023-03-15 20:21:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Diaphorobacter
## 2023-03-15 20:21:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Anaerostipes
## 2023-03-15 20:21:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.g__Phocaeicola
## 2023-03-15 20:21:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Tunalikevirus
## 2023-03-15 20:21:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Mannheimia
## 2023-03-15 20:21:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Lunatimonas
## 2023-03-15 20:21:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Amoebophilaceae.g__Candidatus_Amoebophilus
## 2023-03-15 20:21:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Hydrogenophilales.f__Hydrogenophilaceae.g__Thiobacillus
## 2023-03-15 20:21:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Granulibacter
## 2023-03-15 20:21:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Aquamicrobium
## 2023-03-15 20:21:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Geobacteraceae.g__Geopsychrobacter
## 2023-03-15 20:21:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Arenaviridae.g__Arenavirus
## 2023-03-15 20:21:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Eggerthia
## 2023-03-15 20:21:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Spirochaetaceae.g__Treponema
## 2023-03-15 20:21:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Stanieria
## 2023-03-15 20:21:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Eudoraea
## 2023-03-15 20:21:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Baculoviridae.g__Deltabaculovirus
## 2023-03-15 20:21:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Maritimibacter
## 2023-03-15 20:21:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Simkaniaceae.g__Simkania
## 2023-03-15 20:21:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Thermomonosporaceae.g__Spirillospora
## 2023-03-15 20:21:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.f__Leptospiraceae.g__Leptonema
## 2023-03-15 20:21:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Gemmobacter
## 2023-03-15 20:21:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Papillomaviridae.g__Omegapapillomavirus
## 2023-03-15 20:21:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Methyloferula
## 2023-03-15 20:21:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Gallionella
## 2023-03-15 20:21:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Thalassobaculum
## 2023-03-15 20:21:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Anaerolinea
## 2023-03-15 20:21:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Acidocella
## 2023-03-15 20:21:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Austwickia
## 2023-03-15 20:21:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Caulobacterales.f__Caulobacteraceae.g__Woodsholea
## 2023-03-15 20:21:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Dicistroviridae.g__Cripavirus
## 2023-03-15 20:21:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Tatumella
## 2023-03-15 20:21:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zunongwangia
## 2023-03-15 20:21:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Asaia
## 2023-03-15 20:21:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinosynnema
## 2023-03-15 20:21:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Propionicicella
## 2023-03-15 20:21:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Gallaecimonas
## 2023-03-15 20:21:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Leptolinea
## 2023-03-15 20:21:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Halorhodospira
## 2023-03-15 20:21:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Starkeya
## 2023-03-15 20:21:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Caminibacter
## 2023-03-15 20:21:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Confluentimicrobium
## 2023-03-15 20:21:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Geofilum
## 2023-03-15 20:21:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Kribbella
## 2023-03-15 20:21:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Yaniella
## 2023-03-15 20:21:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Steroidobacter
## 2023-03-15 20:21:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.c__Spartobacteria.g__Terrimicrobium
## 2023-03-15 20:21:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Octadecabacter
## 2023-03-15 20:21:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfarculales.f__Desulfarculaceae.g__Desulfarculus
## 2023-03-15 20:21:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.g__Kallipyga
## 2023-03-15 20:21:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Allochromatium
## 2023-03-15 20:21:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Halothiobacillaceae.g__Halothiobacillus
## 2023-03-15 20:21:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Nitrincola
## 2023-03-15 20:21:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Thermoplasmatales.f__Picrophilaceae.g__Picrophilus
## 2023-03-15 20:21:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Hydrogenobacter
## 2023-03-15 20:21:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_III._Incertae_Sedis.g__Thermosediminibacter
## 2023-03-15 20:21:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Virgibacillus
## 2023-03-15 20:21:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Leucothrix
## 2023-03-15 20:21:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Anelloviridae.g__Gammatorquevirus
## 2023-03-15 20:21:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Hahellaceae.g__Zooshikella
## 2023-03-15 20:21:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Pelagibacterium
## 2023-03-15 20:21:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylobacillus
## 2023-03-15 20:21:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Flexistipes
## 2023-03-15 20:21:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Castellaniella
## 2023-03-15 20:21:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Flexithrix
## 2023-03-15 20:21:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Verrucosispora
## 2023-03-15 20:21:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Pelistega
## 2023-03-15 20:21:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Fibrobacteres.c__Chitinispirillia.o__Chitinispirillales.f__Chitinispirillaceae.g__Chitinispirillum
## 2023-03-15 20:21:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Rhodothermaeota.c__Balneolia.o__Balneolales.f__Balneolaceae.g__Balneola
## 2023-03-15 20:21:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Rouxiella
## 2023-03-15 20:21:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Enterorhabdus
## 2023-03-15 20:21:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Halonatronum
## 2023-03-15 20:21:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Poxviridae.g__Leporipoxvirus
## 2023-03-15 20:21:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Fibrobacteres.c__Fibrobacteria.o__Fibrobacterales.f__Fibrobacteraceae.g__Fibrobacter
## 2023-03-15 20:21:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Crenobacter
## 2023-03-15 20:21:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Lutibaculum
## 2023-03-15 20:21:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ahrensia
## 2023-03-15 20:21:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Polydnaviridae.g__Ichnovirus
## 2023-03-15 20:21:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Coprococcus
## 2023-03-15 20:21:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bradyrhizobiaceae.g__Oligotropha
## 2023-03-15 20:21:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Chelativorans
## 2023-03-15 20:21:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Xanthobacter
## 2023-03-15 20:21:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Ewingella
## 2023-03-15 20:21:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudooceanicola
## 2023-03-15 20:21:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Hahellaceae.g__Hahella
## 2023-03-15 20:21:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfohalobium
## 2023-03-15 20:21:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Dongia
## 2023-03-15 20:21:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prevotellaceae.g__Prevotella
## 2023-03-15 20:21:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Rikenellaceae.g__Rikenella
## 2023-03-15 20:21:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanobacteriaceae.g__Methanosphaera
## 2023-03-15 20:21:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Chitinimonas
## 2023-03-15 20:21:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Leptotrichiaceae.g__Streptobacillus
## 2023-03-15 20:21:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Andreprevotia
## 2023-03-15 20:21:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cardiobacteriales.f__Cardiobacteriaceae.g__Cardiobacterium
## 2023-03-15 20:21:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Fabavirus
## 2023-03-15 20:21:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Sediminicola
## 2023-03-15 20:21:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Alphacoronavirus
## 2023-03-15 20:21:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Adhaeribacter
## 2023-03-15 20:21:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Rhodoluna
## 2023-03-15 20:21:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Lentisphaerae.c__Lentisphaeria.o__Lentisphaerales.f__Lentisphaeraceae.g__Lentisphaera
## 2023-03-15 20:21:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Dermatophilus
## 2023-03-15 20:21:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Stigonematales.g__Hapalosiphon
## 2023-03-15 20:21:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Pseudolabrys
## 2023-03-15 20:21:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Enorma
## 2023-03-15 20:21:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.g__Nitratifractor
## 2023-03-15 20:21:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Palaeococcus
## 2023-03-15 20:21:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Halieaceae.g__Luminiphilus
## 2023-03-15 20:21:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Candidatus_Stoquefichus
## 2023-03-15 20:21:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Maribacter
## 2023-03-15 20:21:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Deinococcales.f__Trueperaceae.g__Truepera
## 2023-03-15 20:21:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Planctopirus
## 2023-03-15 20:21:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Dokdonella
## 2023-03-15 20:21:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Chania
## 2023-03-15 20:21:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Vitellibacter
## 2023-03-15 20:21:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Aminomonas
## 2023-03-15 20:21:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Desulfurococcaceae.g__Ignicoccus
## 2023-03-15 20:21:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Glycomycetales.f__Glycomycetaceae.g__Haloglycomyces
## 2023-03-15 20:21:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Gulosibacter
## 2023-03-15 20:21:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Blastomonas
## 2023-03-15 20:21:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Dinoroseobacter
## 2023-03-15 20:21:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sulfitobacter
## 2023-03-15 20:21:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Kibdelosporangium
## 2023-03-15 20:21:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Zymomonas
## 2023-03-15 20:21:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Nesiotobacter
## 2023-03-15 20:21:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Microthrixaceae.g__Candidatus_Microthrix
## 2023-03-15 20:21:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfarculales.f__Desulfarculaceae.g__Dethiosulfatarculus
## 2023-03-15 20:21:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Paludibacterium
## 2023-03-15 20:21:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Filomicrobium
## 2023-03-15 20:21:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Anaerovibrio
## 2023-03-15 20:21:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Nitrosococcus
## 2023-03-15 20:21:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Spongiibacteraceae.g__Spongiibacter
## 2023-03-15 20:21:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Hydrogenovibrio
## 2023-03-15 20:21:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomonas
## 2023-03-15 20:21:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatitalea
## 2023-03-15 20:21:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Capnocytophaga
## 2023-03-15 20:21:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Rubritepida
## 2023-03-15 20:21:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Carboxydothermus
## 2023-03-15 20:21:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.g__Thermorudis
## 2023-03-15 20:21:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cardiobacteriales.f__Cardiobacteriaceae.g__Dichelobacter
## 2023-03-15 20:21:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Crocinitomicaceae.g__Fluviicola
## 2023-03-15 20:21:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Catelliglobosispora
## 2023-03-15 20:21:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Litoreibacter
## 2023-03-15 20:21:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Tanticharoenia
## 2023-03-15 20:21:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Salinarchaeum
## 2023-03-15 20:21:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Orthomyxoviridae.g__Isavirus
## 2023-03-15 20:21:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Granulicella
## 2023-03-15 20:21:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Tachikawaea
## 2023-03-15 20:21:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Peptostreptococcus
## 2023-03-15 20:21:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Virgaviridae.g__Pomovirus
## 2023-03-15 20:21:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatiglans
## 2023-03-15 20:21:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Oceanospirillum
## 2023-03-15 20:21:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Niabella
## 2023-03-15 20:21:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Thaumarchaeota.g__Candidatus_Nitrosopelagicus
## 2023-03-15 20:21:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Propionispira
## 2023-03-15 20:21:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Propionibacteriaceae.g__Propionimicrobium
## 2023-03-15 20:21:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Candidatus_Desulforudis
## 2023-03-15 20:21:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobiaceae.g__Haloferula
## 2023-03-15 20:21:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Anaerofustis
## 2023-03-15 20:21:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Paenirhodobacter
## 2023-03-15 20:21:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Flaviflexus
## 2023-03-15 20:21:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseivivax
## 2023-03-15 20:21:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Rikenellaceae.g__Mucinivorans
## 2023-03-15 20:21:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiocapsa
## 2023-03-15 20:21:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Lewinella
## 2023-03-15 20:21:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Gimesia
## 2023-03-15 20:21:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Polycyclovorans
## 2023-03-15 20:21:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bradyrhizobiaceae.g__Tardiphaga
## 2023-03-15 20:21:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Isoptericola
## 2023-03-15 20:21:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophaceae.g__Syntrophus
## 2023-03-15 20:21:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Isosphaeraceae.g__Singulisphaera
## 2023-03-15 20:21:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Faecalicoccus
## 2023-03-15 20:21:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Thermanaerovibrio
## 2023-03-15 20:21:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Sediminibacter
## 2023-03-15 20:21:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Terrabacter
## 2023-03-15 20:21:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Derxia
## 2023-03-15 20:21:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zhouia
## 2023-03-15 20:21:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Cesiribacter
## 2023-03-15 20:21:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Histophilus
## 2023-03-15 20:21:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Kineosporiales.f__Kineosporiaceae.g__Kineosporia
## 2023-03-15 20:21:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Oleiagrimonas
## 2023-03-15 20:21:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Leptotrichiaceae.g__Sebaldella
## 2023-03-15 20:21:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Echinicola
## 2023-03-15 20:21:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.g__Timonella
## 2023-03-15 20:21:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Nonlabens
## 2023-03-15 20:21:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Kineosporiales.f__Kineosporiaceae.g__Kineococcus
## 2023-03-15 20:21:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Micavibrio
## 2023-03-15 20:21:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thioflavicoccus
## 2023-03-15 20:21:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Glycomycetales.f__Glycomycetaceae.g__Glycomyces
## 2023-03-15 20:21:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Longispora
## 2023-03-15 20:21:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Parvibaculum
## 2023-03-15 20:21:31 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sneathiellales.f__Sneathiellaceae.g__Sneathiella
## 2023-03-15 20:21:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Johnsonella
## 2023-03-15 20:21:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Catenuloplanes
## 2023-03-15 20:21:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Planomonospora
## 2023-03-15 20:21:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Spounalikevirus
## 2023-03-15 20:21:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Puniceicoccales.f__Puniceicoccaceae.g__Coraliomargarita
## 2023-03-15 20:21:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Phaeospirillum
## 2023-03-15 20:21:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Gemmatimonadetes.c__Gemmatimonadetes.o__Gemmatimonadales.f__Gemmatimonadaceae.g__Gemmatirosa
## 2023-03-15 20:21:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Cyanobium
## 2023-03-15 20:21:32 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Schlesneria
## 2023-03-15 20:21:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Aminobacterium
## 2023-03-15 20:21:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Rudaea
## 2023-03-15 20:21:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Agreia
## 2023-03-15 20:21:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Asanoa
## 2023-03-15 20:21:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Alkaliflexus
## 2023-03-15 20:21:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Bdellovibrionales.f__Bacteriovoracaceae.g__Bacteriovorax
## 2023-03-15 20:21:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Magnetococcales.f__Magnetococcaceae.g__Magnetococcus
## 2023-03-15 20:21:33 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Terracoccus
## 2023-03-15 20:21:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Staphylococcaceae.g__Macrococcus
## 2023-03-15 20:21:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Microscilla
## 2023-03-15 20:21:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Actinocatenispora
## 2023-03-15 20:21:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Ferrimicrobium
## 2023-03-15 20:21:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Riemerella
## 2023-03-15 20:21:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitinilyticum
## 2023-03-15 20:21:34 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Ornatilinea
## 2023-03-15 20:21:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Oceanibaculum
## 2023-03-15 20:21:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylobacteriaceae.g__Microvirga
## 2023-03-15 20:21:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methermicoccaceae.g__Methermicoccus
## 2023-03-15 20:21:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Kluyvera
## 2023-03-15 20:21:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Papillomaviridae.g__Lambdapapillomavirus
## 2023-03-15 20:21:35 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Ornithobacterium
## 2023-03-15 20:21:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Elusimicrobia.c__Endomicrobia.o__Endomicrobiales.f__Endomicrobiaceae.g__Endomicrobium
## 2023-03-15 20:21:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Planktomarina
## 2023-03-15 20:21:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Succinivibrionaceae.g__Succinivibrio
## 2023-03-15 20:21:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Shimia
## 2023-03-15 20:21:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Ferriphaselus
## 2023-03-15 20:21:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulforegula
## 2023-03-15 20:21:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Gemmata
## 2023-03-15 20:21:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Phycodnaviridae.g__Prasinovirus
## 2023-03-15 20:21:36 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Muricauda
## 2023-03-15 20:21:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Olleya
## 2023-03-15 20:21:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Thermococcus
## 2023-03-15 20:21:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Wenzhouxiangellaceae.g__Wenzhouxiangella
## 2023-03-15 20:21:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Sciscionella
## 2023-03-15 20:21:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Candidatus_Korarchaeota.g__Candidatus_Korarchaeum
## 2023-03-15 20:21:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.g__Caedibacter
## 2023-03-15 20:21:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Caenimonas
## 2023-03-15 20:21:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Dictyoglomi.c__Dictyoglomia.o__Dictyoglomales.f__Dictyoglomaceae.g__Dictyoglomus
## 2023-03-15 20:21:37 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Sporolactobacillaceae.g__Tuberibacillus
## 2023-03-15 20:21:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Silvibacterium
## 2023-03-15 20:21:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Terrimonas
## 2023-03-15 20:21:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Haliscomenobacter
## 2023-03-15 20:21:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Rubinisphaera
## 2023-03-15 20:21:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Pseudarthrobacter
## 2023-03-15 20:21:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Arenimonas
## 2023-03-15 20:21:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Orbales.f__Orbaceae.g__Frischella
## 2023-03-15 20:21:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halapricum
## 2023-03-15 20:21:38 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Eggerthella
## 2023-03-15 20:21:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Hirschia
## 2023-03-15 20:21:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Parvimonas
## 2023-03-15 20:21:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Flavisolibacter
## 2023-03-15 20:21:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Dechloromonas
## 2023-03-15 20:21:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Novispirillum
## 2023-03-15 20:21:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Neptunomonas
## 2023-03-15 20:21:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Spiribacter
## 2023-03-15 20:21:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Simplexvirus
## 2023-03-15 20:21:39 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Kozakia
## 2023-03-15 20:21:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermabacteraceae.g__Dermabacter
## 2023-03-15 20:21:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.o__Methylacidiphilales.f__Methylacidiphilaceae.g__Methylacidiphilum
## 2023-03-15 20:21:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Flavihumibacter
## 2023-03-15 20:21:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Adenoviridae.g__Mastadenovirus
## 2023-03-15 20:21:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Sanguibacteroides
## 2023-03-15 20:21:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Pilimelia
## 2023-03-15 20:21:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Thermomonas
## 2023-03-15 20:21:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Roseivirga
## 2023-03-15 20:21:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Saccharibacillus
## 2023-03-15 20:21:40 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Gordonibacter
## 2023-03-15 20:21:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Spirosoma
## 2023-03-15 20:21:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Hepatovirus
## 2023-03-15 20:21:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Marinobacter
## 2023-03-15 20:21:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Phycodnaviridae.g__Prymnesiovirus
## 2023-03-15 20:21:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Desulfurobacteriales.f__Desulfurobacteriaceae.g__Desulfurobacterium
## 2023-03-15 20:21:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Dehalococcoidia.g__Dehalogenimonas
## 2023-03-15 20:21:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Weeksella
## 2023-03-15 20:21:41 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylobacteriaceae.g__Meganema
## 2023-03-15 20:21:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Kiloniellales.f__Kiloniellaceae.g__Kiloniella
## 2023-03-15 20:21:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Lebetimonas
## 2023-03-15 20:21:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Ignavibacteriae.c__Ignavibacteria.o__Ignavibacteriales.f__Ignavibacteriaceae.g__Ignavibacterium
## 2023-03-15 20:21:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Schleiferiaceae.g__Schleiferia
## 2023-03-15 20:21:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Caulobacterales.f__Caulobacteraceae.g__Phenylobacterium
## 2023-03-15 20:21:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Saccharibacter
## 2023-03-15 20:21:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Allokutzneria
## 2023-03-15 20:21:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.g__Emaravirus
## 2023-03-15 20:21:42 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Aeromonas
## 2023-03-15 20:21:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Enteractinococcus
## 2023-03-15 20:21:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Erysipelatoclostridium
## 2023-03-15 20:21:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Nitrospirae.c__Nitrospira.o__Nitrospirales.f__Nitrospiraceae.g__Candidatus_Magnetobacterium
## 2023-03-15 20:21:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Henriciella
## 2023-03-15 20:21:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Proteus
## 2023-03-15 20:21:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Regiella
## 2023-03-15 20:21:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Viridibacillus
## 2023-03-15 20:21:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhizobiaceae.g__Neorhizobium
## 2023-03-15 20:21:43 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinomycetospora
## 2023-03-15 20:21:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Frankiales.f__Sporichthyaceae.g__Sporichthya
## 2023-03-15 20:21:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Porticoccaceae.g__Porticoccus
## 2023-03-15 20:21:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Desulfurispora
## 2023-03-15 20:21:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Retroviridae.g__Betaretrovirus
## 2023-03-15 20:21:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Kinetoplastibacterium
## 2023-03-15 20:21:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Citromicrobium
## 2023-03-15 20:21:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halorhabdus
## 2023-03-15 20:21:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Poxviridae.g__Capripoxvirus
## 2023-03-15 20:21:44 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Haematospirillum
## 2023-03-15 20:21:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Maribius
## 2023-03-15 20:21:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Candidatus_Soleaferrea
## 2023-03-15 20:21:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Xylanimonas
## 2023-03-15 20:21:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Microtetraspora
## 2023-03-15 20:21:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Pirellula
## 2023-03-15 20:21:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Dactylosporangium
## 2023-03-15 20:21:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylosarcina
## 2023-03-15 20:21:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Polynucleobacter
## 2023-03-15 20:21:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Thermales.f__Thermaceae.g__Marinithermus
## 2023-03-15 20:21:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Anaplasma
## 2023-03-15 20:21:45 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Magnetospira
## 2023-03-15 20:21:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Xylella
## 2023-03-15 20:21:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Pseudomonadaceae.g__Oblitimonas
## 2023-03-15 20:21:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Senegalimassilia
## 2023-03-15 20:21:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Rubrobacteria.o__Rubrobacterales.f__Rubrobacteraceae.g__Rubrobacter
## 2023-03-15 20:21:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Nakamurellales.f__Nakamurellaceae.g__Nakamurella
## 2023-03-15 20:21:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Mitsuaria
## 2023-03-15 20:21:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Thermobrachium
## 2023-03-15 20:21:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfomicrobiaceae.g__Desulfomicrobium
## 2023-03-15 20:21:46 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Desulfuromonadaceae.g__Pelobacter
## 2023-03-15 20:21:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Symbiobacteriaceae.g__Symbiobacterium
## 2023-03-15 20:21:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Colwellia
## 2023-03-15 20:21:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.g__Tropheryma
## 2023-03-15 20:21:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pluralibacter
## 2023-03-15 20:21:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Advenella
## 2023-03-15 20:21:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Polyangiaceae.g__Sorangium
## 2023-03-15 20:21:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Pseudacidovorax
## 2023-03-15 20:21:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Amantichitinum
## 2023-03-15 20:21:47 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Vibrio
## 2023-03-15 20:21:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Fulvivirga
## 2023-03-15 20:21:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Senecavirus
## 2023-03-15 20:21:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Robinsoniella
## 2023-03-15 20:21:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Acetohalobium
## 2023-03-15 20:21:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Luteibacter
## 2023-03-15 20:21:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Sporomusaceae.g__Sporomusa
## 2023-03-15 20:21:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Dicistroviridae.g__Aparavirus
## 2023-03-15 20:21:48 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Hydrogenivirga
## 2023-03-15 20:21:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Mitsuokella
## 2023-03-15 20:21:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Pleomorphomonas
## 2023-03-15 20:21:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Herpesvirales.f__Alloherpesviridae.g__Batrachovirus
## 2023-03-15 20:21:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Catenulisporales.f__Actinospicaceae.g__Actinospica
## 2023-03-15 20:21:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Pseudoflavonifractor
## 2023-03-15 20:21:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.g__Anaerosporomusa
## 2023-03-15 20:21:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Helcococcus
## 2023-03-15 20:21:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Gracilibacillus
## 2023-03-15 20:21:49 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Zetaproteobacteria.o__Mariprofundales.f__Mariprofundaceae.g__Mariprofundus
## 2023-03-15 20:21:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Skermanella
## 2023-03-15 20:21:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Marivirga
## 2023-03-15 20:21:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Thiorhodospira
## 2023-03-15 20:21:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylobacter
## 2023-03-15 20:21:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thioclava
## 2023-03-15 20:21:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Eikenella
## 2023-03-15 20:21:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Flammeovirga
## 2023-03-15 20:21:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Waikavirus
## 2023-03-15 20:21:50 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Xenococcus
## 2023-03-15 20:21:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Amorphus
## 2023-03-15 20:21:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Thermoactinomycetaceae.g__Thermoactinomyces
## 2023-03-15 20:21:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Candidatus_Puniceispirillum
## 2023-03-15 20:21:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfonatronaceae.g__Desulfonatronum
## 2023-03-15 20:21:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Halocynthiibacter
## 2023-03-15 20:21:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Kosakonia
## 2023-03-15 20:21:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Segetibacter
## 2023-03-15 20:21:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Proteiniclasticum
## 2023-03-15 20:21:51 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfovibrionaceae.g__Lawsonia
## 2023-03-15 20:21:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Arcticibacter
## 2023-03-15 20:21:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Anaerobaculum
## 2023-03-15 20:21:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Hamadaea
## 2023-03-15 20:21:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Carnimonas
## 2023-03-15 20:21:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Belliella
## 2023-03-15 20:21:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Pseudobacteroides
## 2023-03-15 20:21:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Ventosimonadaceae.g__Ventosimonas
## 2023-03-15 20:21:52 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Caldicoprobacteraceae.g__Caldicoprobacter
## 2023-03-15 20:21:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Orenia
## 2023-03-15 20:21:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfobacter
## 2023-03-15 20:21:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Vagococcus
## 2023-03-15 20:21:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zobellia
## 2023-03-15 20:21:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Pimelobacter
## 2023-03-15 20:21:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Herbidospora
## 2023-03-15 20:21:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Candidatus_Profftella
## 2023-03-15 20:21:53 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Polyangiaceae.g__Chondromyces
## 2023-03-15 20:21:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Fervidicella
## 2023-03-15 20:21:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Vulgatibacteraceae.g__Vulgatibacter
## 2023-03-15 20:21:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhizobiaceae.g__Agrobacterium
## 2023-03-15 20:21:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Rhodobacter
## 2023-03-15 20:21:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Cycloclasticus
## 2023-03-15 20:21:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Holosporaceae.g__Holospora
## 2023-03-15 20:21:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Hylemonella
## 2023-03-15 20:21:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.o__Sphaerobacterales.f__Sphaerobacteraceae.g__Sphaerobacter
## 2023-03-15 20:21:54 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Salinisphaerales.f__Salinisphaeraceae.g__Salinisphaera
## 2023-03-15 20:21:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinokineospora
## 2023-03-15 20:21:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Methylocella
## 2023-03-15 20:21:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Microbispora
## 2023-03-15 20:21:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.g__Elioraea
## 2023-03-15 20:21:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Candidatus_Arthromitus
## 2023-03-15 20:21:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Slackia
## 2023-03-15 20:21:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Defluviimonas
## 2023-03-15 20:21:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Azohydromonas
## 2023-03-15 20:21:55 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobia_subdivision_3.g__Pedosphaera
## 2023-03-15 20:21:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Oribacterium
## 2023-03-15 20:21:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Cecembia
## 2023-03-15 20:21:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Muribacter
## 2023-03-15 20:21:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Acidobacteria.c__Blastocatellia.g__Chloracidobacterium
## 2023-03-15 20:21:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Coleofasciculus
## 2023-03-15 20:21:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Roseburia
## 2023-03-15 20:21:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Criblamydiaceae.g__Criblamydia
## 2023-03-15 20:21:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thalassobius
## 2023-03-15 20:21:56 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Sediminibacterium
## 2023-03-15 20:21:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Falsirhodobacter
## 2023-03-15 20:21:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.g__Reyranella
## 2023-03-15 20:21:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Mizugakiibacter
## 2023-03-15 20:21:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Aquamavirus
## 2023-03-15 20:21:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Paracaedibacteraceae.g__Candidatus_Paracaedibacter
## 2023-03-15 20:21:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Candidatus_Cloacimonetes.g__Candidatus_Cloacimonas
## 2023-03-15 20:21:57 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Xylophilus
## 2023-03-15 20:21:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.g__Candidatus_Hepatobacter
## 2023-03-15 20:21:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Solibacillus
## 2023-03-15 20:21:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Emticicia
## 2023-03-15 20:21:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Rhodovibrio
## 2023-03-15 20:21:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Sporomusaceae.g__Anaeromusa
## 2023-03-15 20:21:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Thermosulfurimonas
## 2023-03-15 20:21:58 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Fervidobacteriaceae.g__Thermosipho
## 2023-03-15 20:21:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Fibrella
## 2023-03-15 20:21:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Dehalococcoidia.o__Dehalococcoidales.f__Dehalococcoidaceae.g__Dehalococcoides
## 2023-03-15 20:21:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Lechevalieria
## 2023-03-15 20:21:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Thermotogaceae.g__Thermotoga
## 2023-03-15 20:21:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Oceanimonas
## 2023-03-15 20:21:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Phycodnaviridae.g__Chlorovirus
## 2023-03-15 20:21:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Midichloriaceae.g__Candidatus_Midichloria
## 2023-03-15 20:21:59 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Propionibacteriaceae.g__Granulicoccus
## 2023-03-15 20:22:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Tepidicaulis
## 2023-03-15 20:22:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfurellales.f__Desulfurellaceae.g__Desulfurella
## 2023-03-15 20:22:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanothermaceae.g__Methanothermus
## 2023-03-15 20:22:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Lentimicrobiaceae.g__Lentimicrobium
## 2023-03-15 20:22:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiorhodovibrio
## 2023-03-15 20:22:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Nostoc
## 2023-03-15 20:22:00 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Mangrovimonas
## 2023-03-15 20:22:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.g__Fangia
## 2023-03-15 20:22:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Listeriaceae.g__Listeria
## 2023-03-15 20:22:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pelagibaca
## 2023-03-15 20:22:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Serinicoccus
## 2023-03-15 20:22:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Petrotogales.g__Defluviitoga
## 2023-03-15 20:22:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Planctomyces
## 2023-03-15 20:22:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Calditerrivibrio
## 2023-03-15 20:22:01 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.g__Candidatus_Sulcia
## 2023-03-15 20:22:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermacoccaceae.g__Luteipulveratus
## 2023-03-15 20:22:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Klebsiella
## 2023-03-15 20:22:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Parabacteroides
## 2023-03-15 20:22:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Hafnia
## 2023-03-15 20:22:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Acidithrix
## 2023-03-15 20:22:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Thauera
## 2023-03-15 20:22:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Alicycliphilus
## 2023-03-15 20:22:02 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Tymovirales.f__Alphaflexiviridae.g__Potexvirus
## 2023-03-15 20:22:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Tymovirales.f__Betaflexiviridae.g__Carlavirus
## 2023-03-15 20:22:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Tenacibaculum
## 2023-03-15 20:22:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ruegeria
## 2023-03-15 20:22:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.g__Tomitella
## 2023-03-15 20:22:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Denitrobacterium
## 2023-03-15 20:22:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Gordoniaceae.g__Gordonia
## 2023-03-15 20:22:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Cellulosilyticum
## 2023-03-15 20:22:03 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Jiangellales.f__Jiangellaceae.g__Jiangella
## 2023-03-15 20:22:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Iridoviridae.g__Ranavirus
## 2023-03-15 20:22:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Aminobacter
## 2023-03-15 20:22:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Bafinivirus
## 2023-03-15 20:22:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Kineosphaera
## 2023-03-15 20:22:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Candidatus_Aquiluna
## 2023-03-15 20:22:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Thiomicrospira
## 2023-03-15 20:22:04 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Lampropedia
## 2023-03-15 20:22:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Methylibium
## 2023-03-15 20:22:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Haemophilus
## 2023-03-15 20:22:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Ornithinibacillus
## 2023-03-15 20:22:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Cobetia
## 2023-03-15 20:22:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Varibaculum
## 2023-03-15 20:22:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Poxviridae.g__Betaentomopoxvirus
## 2023-03-15 20:22:05 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Rubellimicrobium
## 2023-03-15 20:22:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Rhodothermaeota.c__Balneolia.o__Balneolales.f__Balneolaceae.g__Gracilimonas
## 2023-03-15 20:22:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Acidaminococcales.f__Acidaminococcaceae.g__Acidaminococcus
## 2023-03-15 20:22:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Aurantimonadaceae.g__Martelella
## 2023-03-15 20:22:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Thermobacillus
## 2023-03-15 20:22:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Maricaulis
## 2023-03-15 20:22:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Sandaracinaceae.g__Sandaracinus
## 2023-03-15 20:22:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Chelatococcus
## 2023-03-15 20:22:06 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Nitrospirae.c__Nitrospira.o__Nitrospirales.f__Nitrospiraceae.g__Leptospirillum
## 2023-03-15 20:22:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Salivirus
## 2023-03-15 20:22:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Loktanella
## 2023-03-15 20:22:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Candidatus_Evansia
## 2023-03-15 20:22:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Hypoviridae.g__Hypovirus
## 2023-03-15 20:22:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Thermocrispum
## 2023-03-15 20:22:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Demequinaceae.g__Demequina
## 2023-03-15 20:22:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfovermiculus
## 2023-03-15 20:22:07 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.f__Leptospiraceae.g__Turneriella
## 2023-03-15 20:22:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Terracidiphilus
## 2023-03-15 20:22:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Belnapia
## 2023-03-15 20:22:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Campylobacteraceae.g__Campylobacter
## 2023-03-15 20:22:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Thermonemataceae.g__Thermonema
## 2023-03-15 20:22:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Opitutales.f__Opitutaceae.g__Opitutus
## 2023-03-15 20:22:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Alcanivoracaceae.g__Kangiella
## 2023-03-15 20:22:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylocaldum
## 2023-03-15 20:22:08 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfovibrionaceae.g__Desulfocurvus
## 2023-03-15 20:22:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophaceae.g__Desulfobacca
## 2023-03-15 20:22:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Heliobacteriaceae.g__Heliobacterium
## 2023-03-15 20:22:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Ilumatobacter
## 2023-03-15 20:22:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Actinobaculum
## 2023-03-15 20:22:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Acaryochloris
## 2023-03-15 20:22:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Rothia
## 2023-03-15 20:22:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Syntrophomonadaceae.g__Syntrophomonas
## 2023-03-15 20:22:09 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Acidaminococcales.f__Acidaminococcaceae.g__Succinispira
## 2023-03-15 20:22:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Cylindrospermopsis
## 2023-03-15 20:22:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Kosmotogales.f__Kosmotogaceae.g__Kosmotoga
## 2023-03-15 20:22:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Paucibacter
## 2023-03-15 20:22:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chloroflexi.c__Caldilineae.o__Caldilineales.f__Caldilineaceae.g__Caldilinea
## 2023-03-15 20:22:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Pyrodictiaceae.g__Pyrolobus
## 2023-03-15 20:22:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Hydrogenibacillus
## 2023-03-15 20:22:10 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Alloactinosynnema
## 2023-03-15 20:22:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Poxviridae.g__Molluscipoxvirus
## 2023-03-15 20:22:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Marinomonas
## 2023-03-15 20:22:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Blastochloris
## 2023-03-15 20:22:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinoalloteichus
## 2023-03-15 20:22:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Prosthecomicrobium
## 2023-03-15 20:22:11 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Agrococcus
## 2023-03-15 20:22:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Jonquetella
## 2023-03-15 20:22:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Algoriphagus
## 2023-03-15 20:22:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Coprobacillus
## 2023-03-15 20:22:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_III._Incertae_Sedis.g__Thermoanaerobacterium
## 2023-03-15 20:22:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Nonomuraea
## 2023-03-15 20:22:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pantoea
## 2023-03-15 20:22:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Faecalibaculum
## 2023-03-15 20:22:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Achromobacter
## 2023-03-15 20:22:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Arsenicicoccus
## 2023-03-15 20:22:12 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Komagataeibacter
## 2023-03-15 20:22:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Uliginosibacterium
## 2023-03-15 20:22:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Carnobacteriaceae.g__Allofustis
## 2023-03-15 20:22:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chrysiogenetes.c__Chrysiogenetes.o__Chrysiogenales.f__Chrysiogenaceae.g__Desulfurispirillum
## 2023-03-15 20:22:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Geminicoccus
## 2023-03-15 20:22:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Methylopila
## 2023-03-15 20:22:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Nannocystaceae.g__Plesiocystis
## 2023-03-15 20:22:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseovarius
## 2023-03-15 20:22:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Bacteroidaceae.g__Bacteroides
## 2023-03-15 20:22:13 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Hydrocarboniphaga
## 2023-03-15 20:22:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Labilitrichaceae.g__Labilithrix
## 2023-03-15 20:22:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Rhodoferax
## 2023-03-15 20:22:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Astroviridae.g__Mamastrovirus
## 2023-03-15 20:22:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Arsukibacterium
## 2023-03-15 20:22:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Pseudomonadaceae.g__Azotobacter
## 2023-03-15 20:22:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Catenulisporales.f__Catenulisporaceae.g__Catenulispora
## 2023-03-15 20:22:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Flaviviridae.g__Flavivirus
## 2023-03-15 20:22:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Rhadinovirus
## 2023-03-15 20:22:14 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanobacteriaceae.g__Methanothermobacter
## 2023-03-15 20:22:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Rubritaleaceae.g__Rubritalea
## 2023-03-15 20:22:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Alicyclobacillaceae.g__Kyrpidia
## 2023-03-15 20:22:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Oligella
## 2023-03-15 20:22:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Neorickettsia
## 2023-03-15 20:22:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Pseudopedobacter
## 2023-03-15 20:22:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.g__Deferrisoma
## 2023-03-15 20:22:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Mononegavirales.f__Paramyxoviridae.g__Rubulavirus
## 2023-03-15 20:22:15 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermacoccaceae.g__Demetria
## 2023-03-15 20:22:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Marinobacterium
## 2023-03-15 20:22:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Planomicrobium
## 2023-03-15 20:22:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinifilaceae.g__Marinifilum
## 2023-03-15 20:22:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Leuconostocaceae.g__Fructobacillus
## 2023-03-15 20:22:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Saccharophagus
## 2023-03-15 20:22:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Oceanicaulis
## 2023-03-15 20:22:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Aquincola
## 2023-03-15 20:22:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Tyzzerella
## 2023-03-15 20:22:16 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Flexibacter
## 2023-03-15 20:22:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Thermovirga
## 2023-03-15 20:22:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Ideonella
## 2023-03-15 20:22:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Stigonematales.g__Mastigocoleus
## 2023-03-15 20:22:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Acidaminococcales.f__Acidaminococcaceae.g__Phascolarctobacterium
## 2023-03-15 20:22:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Planococcus
## 2023-03-15 20:22:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Prauserella
## 2023-03-15 20:22:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Methylosinus
## 2023-03-15 20:22:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Bibersteinia
## 2023-03-15 20:22:17 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Retroviridae.g__Alpharetrovirus
## 2023-03-15 20:22:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prolixibacteraceae.g__Draconibacterium
## 2023-03-15 20:22:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Intestinibacter
## 2023-03-15 20:22:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Pontibacter
## 2023-03-15 20:22:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Halalkalibacillus
## 2023-03-15 20:22:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Ectothiorhodospira
## 2023-03-15 20:22:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiales_Family_XIII._Incertae_Sedis.g__Casaltella
## 2023-03-15 20:22:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Runella
## 2023-03-15 20:22:18 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Caldiserica.c__Caldisericia.o__Caldisericales.f__Caldisericaceae.g__Caldisericum
## 2023-03-15 20:22:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Veillonellales.f__Veillonellaceae.g__Dialister
## 2023-03-15 20:22:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Helicobacter
## 2023-03-15 20:22:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Saccharomonospora
## 2023-03-15 20:22:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_III._Incertae_Sedis.g__Caldicellulosiruptor
## 2023-03-15 20:22:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylotenera
## 2023-03-15 20:22:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Aquitalea
## 2023-03-15 20:22:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Actinotalea
## 2023-03-15 20:22:19 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Nafulsella
## 2023-03-15 20:22:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Eubacterium
## 2023-03-15 20:22:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Flaviviridae.g__Pestivirus
## 2023-03-15 20:22:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Trueperella
## 2023-03-15 20:22:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiales_Family_XVII._Incertae_Sedis.g__Thermaerobacter
## 2023-03-15 20:22:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Mycetocola
## 2023-03-15 20:22:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Taylorella
## 2023-03-15 20:22:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Acidithiobacillia.o__Acidithiobacillales.f__Thermithiobacillaceae.g__Thermithiobacillus
## 2023-03-15 20:22:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Phycicoccus
## 2023-03-15 20:22:20 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Cryptobacterium
## 2023-03-15 20:22:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Spo1virus
## 2023-03-15 20:22:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Moorella
## 2023-03-15 20:22:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Nesterenkonia
## 2023-03-15 20:22:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Zavarzinella
## 2023-03-15 20:22:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Flectobacillus
## 2023-03-15 20:22:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Candidatus_Endolissoclinum
## 2023-03-15 20:22:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Methanomassiliicoccales.f__Methanomassiliicoccaceae.g__Methanomassiliicoccus
## 2023-03-15 20:22:21 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Pandoraea
## 2023-03-15 20:22:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Sinomonas
## 2023-03-15 20:22:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Acetivibrio
## 2023-03-15 20:22:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Segniliparaceae.g__Segniliparus
## 2023-03-15 20:22:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Apibacter
## 2023-03-15 20:22:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Caldalkalibacillus
## 2023-03-15 20:22:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophorhabdaceae.g__Syntrophorhabdus
## 2023-03-15 20:22:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Saccharicrinis
## 2023-03-15 20:22:22 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.f__Polyomaviridae.g__Polyomavirus
## 2023-03-15 20:22:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Propionibacteriaceae.g__Aestuariimicrobium
## 2023-03-15 20:22:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Chlamydiaceae.g__Chlamydia
## 2023-03-15 20:22:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Knoellia
## 2023-03-15 20:22:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Thalassospira
## 2023-03-15 20:22:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Brachymonas
## 2023-03-15 20:22:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Hyphomicrobium
## 2023-03-15 20:22:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Candidatus_Nasuia
## 2023-03-15 20:22:23 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Leuconostocaceae.g__Leuconostoc
## 2023-03-15 20:22:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfobulbus
## 2023-03-15 20:22:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Acidothermales.f__Acidothermaceae.g__Acidothermus
## 2023-03-15 20:22:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Arcanobacterium
## 2023-03-15 20:22:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Ehrlichia
## 2023-03-15 20:22:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halanaerobiaceae.g__Halanaerobium
## 2023-03-15 20:22:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Roseateles
## 2023-03-15 20:22:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Methylophaga
## 2023-03-15 20:22:24 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Nepovirus
## 2023-03-15 20:22:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Denitrovibrio
## 2023-03-15 20:22:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Geodermatophilales.f__Geodermatophilaceae.g__Blastococcus
## 2023-03-15 20:22:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Pasteurella
## 2023-03-15 20:22:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Streptosporangium
## 2023-03-15 20:22:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Epulopiscium
## 2023-03-15 20:22:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Acidimicrobium
## 2023-03-15 20:22:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Caldimonas
## 2023-03-15 20:22:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Geobacteraceae.g__Geobacter
## 2023-03-15 20:22:25 INFO::Creating boxplot for categorical data, Likely_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Sicinivirus
## 2023-03-15 20:22:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Entomoplasmatales.f__Entomoplasmataceae.g__Mesoplasma
## 2023-03-15 20:22:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Tannerella
## 2023-03-15 20:22:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Polymorphum
## 2023-03-15 20:22:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Anaerotruncus
## 2023-03-15 20:22:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Paeniclostridium
## 2023-03-15 20:22:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Mycobacteriaceae.g__Amycolicicoccus
## 2023-03-15 20:22:26 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Filifactor
## 2023-03-15 20:22:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Sporosarcina
## 2023-03-15 20:22:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Acidobacteria.g__Thermoanaerobaculum
## 2023-03-15 20:22:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Rubrivivax
## 2023-03-15 20:22:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhizobiaceae.g__Sinorhizobium
## 2023-03-15 20:22:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Caldanaerobius
## 2023-03-15 20:22:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Actibacterium
## 2023-03-15 20:22:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Rahnella
## 2023-03-15 20:22:27 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Fictibacillus
## 2023-03-15 20:22:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Frankiales.f__Cryptosporangiaceae.g__Cryptosporangium
## 2023-03-15 20:22:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Pseudoalteromonadaceae.g__Algicola
## 2023-03-15 20:22:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Cellvibrio
## 2023-03-15 20:22:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptomycetales.f__Streptomycetaceae.g__Kitasatospora
## 2023-03-15 20:22:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophaceae.g__Desulfomonile
## 2023-03-15 20:22:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Kamptonema
## 2023-03-15 20:22:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Microterricola
## 2023-03-15 20:22:28 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Staphylococcaceae.g__Salinicoccus
## 2023-03-15 20:22:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Oerskovia
## 2023-03-15 20:22:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Leptotrichiaceae.g__Sneathia
## 2023-03-15 20:22:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Moraxellaceae.g__Alkanindiges
## 2023-03-15 20:22:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Desulfitibacter
## 2023-03-15 20:22:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Paludibacter
## 2023-03-15 20:22:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Kurthia
## 2023-03-15 20:22:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Raoultella
## 2023-03-15 20:22:29 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Mycoplasmatales.f__Mycoplasmataceae.g__Ureaplasma
## 2023-03-15 20:22:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Haloterrigena
## 2023-03-15 20:22:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Tepidanaerobacter
## 2023-03-15 20:22:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Actinoplanes
## 2023-03-15 20:22:30 INFO::Creating boxplot for categorical data, Likely_combined vs k__Bacteria.p__Actinobacteria.c__Nitriliruptoria.o__Nitriliruptorales.f__Nitriliruptoraceae.g__Nitriliruptor
maaslin_putative_group_PC <- function_Maaslin2(df_ACC_filter_putative_Voom_SNM, "PC_combined", "Temp/putative_group_PC")
## [1] "Warning: Deleting existing log file: Temp/putative_group_PC/maaslin2.log"
## 2023-03-15 20:22:31 INFO::Writing function arguments to log file
## 2023-03-15 20:22:31 INFO::Verifying options selected are valid
## 2023-03-15 20:22:31 INFO::Determining format of input files
## 2023-03-15 20:22:31 INFO::Input format is data samples as rows and metadata samples as rows
## 2023-03-15 20:22:31 INFO::Formula for random effects: expr ~ (1 | SEX) + (1 | Ethnicity_Race) + (1 | AGE) + (1 | Neoplasm_Status) + (1 | Clinical_Status_3_Mo_Post.Op) + (1 | Surgical_margin) + (1 | ATYPICAL_MITOTIC_FIGURES)
## 2023-03-15 20:22:31 INFO::Formula for fixed effects: expr ~  PC_combined
## 2023-03-15 20:22:31 INFO::Filter data based on min abundance and min prevalence
## 2023-03-15 20:22:31 INFO::Total samples in data: 77
## 2023-03-15 20:22:31 INFO::Min samples required with min abundance for a feature not to be filtered: 0.000000
## 2023-03-15 20:22:31 INFO::Total filtered features: 5
## 2023-03-15 20:22:31 INFO::Filtered feature names from abundance and prevalence filtering: k__Viruses.f__Hytrosaviridae.g__Muscavirus, k__Viruses.f__Closteroviridae.g__Crinivirus, k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halomicrobium, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Azovibrio, k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Psychrobacillus
## 2023-03-15 20:22:31 INFO::Total filtered features with variance filtering: 0
## 2023-03-15 20:22:31 INFO::Filtered feature names from variance filtering:
## 2023-03-15 20:22:31 INFO::Running selected normalization method: NONE
## 2023-03-15 20:22:31 INFO::Applying z-score to standardize continuous metadata
## 2023-03-15 20:22:31 INFO::Running selected transform method: NONE
## 2023-03-15 20:22:31 INFO::Running selected analysis method: LM
## 2023-03-15 20:22:31 INFO::Creating cluster of 6 R processes
## 2023-03-15 20:22:59 INFO::Counting total values for each feature
## 2023-03-15 20:22:59 WARNING::Deleting existing residuals file: Temp/putative_group_PC/residuals.rds
## 2023-03-15 20:22:59 INFO::Writing residuals to file Temp/putative_group_PC/residuals.rds
## 2023-03-15 20:22:59 WARNING::Deleting existing fitted file: Temp/putative_group_PC/fitted.rds
## 2023-03-15 20:22:59 INFO::Writing fitted values to file Temp/putative_group_PC/fitted.rds
## 2023-03-15 20:22:59 WARNING::Deleting existing ranef file: Temp/putative_group_PC/ranef.rds
## 2023-03-15 20:22:59 INFO::Writing extracted random effects to file Temp/putative_group_PC/ranef.rds
## 2023-03-15 20:22:59 INFO::Writing all results to file (ordered by increasing q-values): Temp/putative_group_PC/all_results.tsv
## 2023-03-15 20:22:59 INFO::Writing the significant results (those which are less than or equal to the threshold of 0.250000 ) to file (ordered by increasing q-values): Temp/putative_group_PC/significant_results.tsv
## 2023-03-15 20:22:59 INFO::Writing heatmap of significant results to file: Temp/putative_group_PC/heatmap.pdf
## Warning in xtfrm.data.frame(x): cannot xtfrm data frames
## [1] "There is not enough metadata in the associations to create a heatmap plot. Please review the associations in text output file."
## 2023-03-15 20:22:59 INFO::Writing association plots (one for each significant association) to output folder: Temp/putative_group_PC
## 2023-03-15 20:22:59 INFO::Plotting associations from most to least significant, grouped by metadata
## 2023-03-15 20:22:59 INFO::Plotting data for metadata number 1, PC_combined
## 2023-03-15 20:22:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Poxviridae.g__Cervidpoxvirus
## 2023-03-15 20:22:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phikmvlikevirus
## 2023-03-15 20:22:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Haloarcula
## 2023-03-15 20:22:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Natronomonas
## 2023-03-15 20:22:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Candidatus_Accumulibacter
## 2023-03-15 20:22:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halobellus
## 2023-03-15 20:23:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermabacteraceae.g__Helcobacillus
## 2023-03-15 20:23:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Centipeda
## 2023-03-15 20:23:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Nocardiopsaceae.g__Allosalinactinospora
## 2023-03-15 20:23:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Aliiroseovarius
## 2023-03-15 20:23:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halobacterium
## 2023-03-15 20:23:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Wolinella
## 2023-03-15 20:23:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Halopiger
## 2023-03-15 20:23:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Thaumarchaeota.o__Nitrosopumilales.f__Nitrosopumilaceae.g__Nitrosopumilus
## 2023-03-15 20:23:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Thalassomonas
## 2023-03-15 20:23:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylovorus
## 2023-03-15 20:23:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseibacterium
## 2023-03-15 20:23:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Halolactibacillus
## 2023-03-15 20:23:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Ardenticatenia.o__Ardenticatenales.f__Ardenticatenaceae.g__Ardenticatena
## 2023-03-15 20:23:01 INFO::Creating boxplot for categorical data, PC_combined vs contaminant4RandomSpikesHarvard
## 2023-03-15 20:23:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Herpesvirales.f__Malacoherpesviridae.g__Ostreavirus
## 2023-03-15 20:23:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.g__Bacilladnavirus
## 2023-03-15 20:23:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__L5likevirus
## 2023-03-15 20:23:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Pyrococcus
## 2023-03-15 20:23:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natronorubrum
## 2023-03-15 20:23:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Reinekea
## 2023-03-15 20:23:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Legionellaceae.g__Tatlockia
## 2023-03-15 20:23:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomarinum
## 2023-03-15 20:23:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Balneatrix
## 2023-03-15 20:23:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Thalassolituus
## 2023-03-15 20:23:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Prosthecochloris
## 2023-03-15 20:23:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Saccharospirillum
## 2023-03-15 20:23:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Candidatus_Methylopumilus
## 2023-03-15 20:23:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Nisaea
## 2023-03-15 20:23:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halanaeroarchaeum
## 2023-03-15 20:23:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Coprobacter
## 2023-03-15 20:23:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Allobaculum
## 2023-03-15 20:23:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Alkalilimnicola
## 2023-03-15 20:23:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.g__Aciduliprofundum
## 2023-03-15 20:23:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Thermincola
## 2023-03-15 20:23:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Arhodomonas
## 2023-03-15 20:23:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Lentzea
## 2023-03-15 20:23:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prolixibacteraceae.g__Prolixibacter
## 2023-03-15 20:23:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Azonexus
## 2023-03-15 20:23:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Hydrogenovibrio
## 2023-03-15 20:23:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.c__Spartobacteria.g__Candidatus_Xiphinematobacter
## 2023-03-15 20:23:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ponticoccus
## 2023-03-15 20:23:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitiniphilus
## 2023-03-15 20:23:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.o__Haloplasmatales.f__Haloplasmataceae.g__Haloplasma
## 2023-03-15 20:23:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Pyrodictiaceae.g__Pyrodictium
## 2023-03-15 20:23:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Yokenella
## 2023-03-15 20:23:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Sideroxydans
## 2023-03-15 20:23:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Dactylococcopsis
## 2023-03-15 20:23:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Nocardiopsaceae.g__Streptomonospora
## 2023-03-15 20:23:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Aliiglaciecola
## 2023-03-15 20:23:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Renibacterium
## 2023-03-15 20:23:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Sulfuricurvum
## 2023-03-15 20:23:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Marinospirillum
## 2023-03-15 20:23:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Spongiibacteraceae.g__Dasania
## 2023-03-15 20:23:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Tolumonas
## 2023-03-15 20:23:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Litoreibacter
## 2023-03-15 20:23:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Candidatus_Koribacter
## 2023-03-15 20:23:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Glycomycetales.f__Glycomycetaceae.g__Haloglycomyces
## 2023-03-15 20:23:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanococci.o__Methanococcales.f__Methanocaldococcaceae.g__Methanotorris
## 2023-03-15 20:23:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Paeniglutamicibacter
## 2023-03-15 20:23:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.g__Thermobaculum
## 2023-03-15 20:23:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Marinagarivorans
## 2023-03-15 20:23:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Mangrovibacter
## 2023-03-15 20:23:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfospira
## 2023-03-15 20:23:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Sedimenticola
## 2023-03-15 20:23:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Holdemania
## 2023-03-15 20:23:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Maritalea
## 2023-03-15 20:23:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Bicaudaviridae.g__Bicaudavirus
## 2023-03-15 20:23:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Bcep22likevirus
## 2023-03-15 20:23:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Anelloviridae.g__Alphatorquevirus
## 2023-03-15 20:23:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Barnyardlikevirus
## 2023-03-15 20:23:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Fuselloviridae.g__Alphafusellovirus
## 2023-03-15 20:23:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Andromedalikevirus
## 2023-03-15 20:23:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Closteroviridae.g__Ampelovirus
## 2023-03-15 20:23:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Orthomyxoviridae.g__Influenzavirus_C
## 2023-03-15 20:23:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phi29likevirus
## 2023-03-15 20:23:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Caulimoviridae.g__Cavemovirus
## 2023-03-15 20:23:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Caulimoviridae.g__Caulimovirus
## 2023-03-15 20:23:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Parvoviridae.g__Protoparvovirus
## 2023-03-15 20:23:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Bromoviridae.g__Alfamovirus
## 2023-03-15 20:23:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Tymovirales.f__Alphaflexiviridae.g__Allexivirus
## 2023-03-15 20:23:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Parvoviridae.g__Ambidensovirus
## 2023-03-15 20:23:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Comovirus
## 2023-03-15 20:23:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Bromoviridae.g__Ilarvirus
## 2023-03-15 20:23:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Totiviridae.g__Totivirus
## 2023-03-15 20:23:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Potyviridae.g__Tritimovirus
## 2023-03-15 20:23:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Papillomaviridae.g__Dyopipapillomavirus
## 2023-03-15 20:23:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Siccibacter
## 2023-03-15 20:23:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Neosynechococcus
## 2023-03-15 20:23:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Aliihoeflea
## 2023-03-15 20:23:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Altibacter
## 2023-03-15 20:23:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Methanomassiliicoccales.f__Methanomassiliicoccaceae.g__Candidatus_Methanomethylophilus
## 2023-03-15 20:23:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bradyrhizobiaceae.g__Oligotropha
## 2023-03-15 20:23:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Arenitalea
## 2023-03-15 20:23:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Thermoactinomycetaceae.g__Shimazuella
## 2023-03-15 20:23:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Ignavibacteriae.c__Ignavibacteria.o__Ignavibacteriales.f__Melioribacteraceae.g__Melioribacter
## 2023-03-15 20:23:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Zymobacter
## 2023-03-15 20:23:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Sediminibacillus
## 2023-03-15 20:23:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Marinococcus
## 2023-03-15 20:23:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.o__Thermomicrobiales.f__Thermomicrobiaceae.g__Thermomicrobium
## 2023-03-15 20:23:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanofollis
## 2023-03-15 20:23:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Thermoplasmatales.f__Ferroplasmaceae.g__Ferroplasma
## 2023-03-15 20:23:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfurivibrio
## 2023-03-15 20:23:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Kosmotogales.f__Kosmotogaceae.g__Mesotoga
## 2023-03-15 20:23:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Dielma
## 2023-03-15 20:23:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatitalea
## 2023-03-15 20:23:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Cloacibacillus
## 2023-03-15 20:23:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Subdoligranulum
## 2023-03-15 20:23:13 INFO::Creating boxplot for categorical data, PC_combined vs contaminant1Harvard
## 2023-03-15 20:23:13 INFO::Creating boxplot for categorical data, PC_combined vs contaminant2HarvardCanadaBaylorWashU
## 2023-03-15 20:23:13 INFO::Creating boxplot for categorical data, PC_combined vs contaminant3AllSeqCenters
## 2023-03-15 20:23:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Paracaedibacteraceae.g__Candidatus_Odyssella
## 2023-03-15 20:23:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Coriobacterium
## 2023-03-15 20:23:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__T5likevirus
## 2023-03-15 20:23:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Anelloviridae.g__Betatorquevirus
## 2023-03-15 20:23:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Gayadomonas
## 2023-03-15 20:23:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__I3likevirus
## 2023-03-15 20:23:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatiglans
## 2023-03-15 20:23:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanoculleus
## 2023-03-15 20:23:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Tymovirales.f__Betaflexiviridae.g__Trichovirus
## 2023-03-15 20:23:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Sfi21dtunalikevirus
## 2023-03-15 20:23:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Skunalikevirus
## 2023-03-15 20:23:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Narnaviridae.g__Narnavirus
## 2023-03-15 20:23:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Catenovulum
## 2023-03-15 20:23:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Parvularculales.f__Parvularculaceae.g__Parvularcula
## 2023-03-15 20:23:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Lacimicrobium
## 2023-03-15 20:23:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Nereida
## 2023-03-15 20:23:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Alicyclobacillaceae.g__Effusibacillus
## 2023-03-15 20:23:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Thermotogaceae.g__Pseudothermotoga
## 2023-03-15 20:23:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Mononegavirales.f__Nyamiviridae.g__Nyavirus
## 2023-03-15 20:23:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Jeotgalibacillus
## 2023-03-15 20:23:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halogranum
## 2023-03-15 20:23:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Sellimonas
## 2023-03-15 20:23:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Pelodictyon
## 2023-03-15 20:23:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Chloroflexia.o__Chloroflexales.f__Oscillochloridaceae.g__Oscillochloris
## 2023-03-15 20:23:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Stanieria
## 2023-03-15 20:23:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Poxviridae.g__Parapoxvirus
## 2023-03-15 20:23:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Papillomaviridae.g__Betapapillomavirus
## 2023-03-15 20:23:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Lambdalikevirus
## 2023-03-15 20:23:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Closteroviridae.g__Closterovirus
## 2023-03-15 20:23:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__N4likevirus
## 2023-03-15 20:23:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Dolichospermum
## 2023-03-15 20:23:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Basilea
## 2023-03-15 20:23:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanoregulaceae.g__Methanolinea
## 2023-03-15 20:23:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Robiginitalea
## 2023-03-15 20:23:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.f__Competibacteraceae.g__Candidatus_Competibacter
## 2023-03-15 20:23:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Mesonia
## 2023-03-15 20:23:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Thaumarchaeota.g__Candidatus_Nitrosotenuis
## 2023-03-15 20:23:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Mimiviridae.g__Mimivirus
## 2023-03-15 20:23:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitinibacter
## 2023-03-15 20:23:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Gramella
## 2023-03-15 20:23:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Rummeliibacillus
## 2023-03-15 20:23:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halarchaeum
## 2023-03-15 20:23:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanoregulaceae.g__Methanosphaerula
## 2023-03-15 20:23:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Thaumarchaeota.o__Nitrosopumilales.f__Nitrosopumilaceae.g__Candidatus_Nitrosoarchaeum
## 2023-03-15 20:23:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Terribacillus
## 2023-03-15 20:23:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Bermanella
## 2023-03-15 20:23:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halalkalicoccus
## 2023-03-15 20:23:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Halostagnicola
## 2023-03-15 20:23:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Sp6likevirus
## 2023-03-15 20:23:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Lymphocryptovirus
## 2023-03-15 20:23:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Thermocrinis
## 2023-03-15 20:23:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Tistrella
## 2023-03-15 20:23:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Paucisalibacillus
## 2023-03-15 20:23:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.g__Tenuivirus
## 2023-03-15 20:23:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfobacula
## 2023-03-15 20:23:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Carnobacteriaceae.g__Alloiococcus
## 2023-03-15 20:23:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Candidatus_Atelocyanobacterium
## 2023-03-15 20:23:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Leminorella
## 2023-03-15 20:23:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Citreicella
## 2023-03-15 20:23:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatirhabdium
## 2023-03-15 20:23:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Adlercreutzia
## 2023-03-15 20:23:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.g__Hoyosella
## 2023-03-15 20:23:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Moranella
## 2023-03-15 20:23:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Salinibacillus
## 2023-03-15 20:23:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.g__Pithovirus
## 2023-03-15 20:23:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thalassobium
## 2023-03-15 20:23:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Gaetbulibacter
## 2023-03-15 20:23:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Blastopirellula
## 2023-03-15 20:23:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Nitritalea
## 2023-03-15 20:23:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Amphritea
## 2023-03-15 20:23:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Virgaviridae.g__Pecluvirus
## 2023-03-15 20:23:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Geovibrio
## 2023-03-15 20:23:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Actinopolymorpha
## 2023-03-15 20:23:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Pseudoramibacter
## 2023-03-15 20:23:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Gallionella
## 2023-03-15 20:23:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Retroviridae.g__Lentivirus
## 2023-03-15 20:23:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Papillomaviridae.g__Gammapapillomavirus
## 2023-03-15 20:23:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Leeuwenhoekiella
## 2023-03-15 20:23:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Caldimicrobium
## 2023-03-15 20:23:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Marinimicrobium
## 2023-03-15 20:23:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Thaumarchaeota.c__Nitrososphaeria.o__Nitrososphaerales.f__Nitrososphaeraceae.g__Nitrososphaera
## 2023-03-15 20:23:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Gynuella
## 2023-03-15 20:23:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Holdemanella
## 2023-03-15 20:23:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Cp220likevirus
## 2023-03-15 20:23:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.g__Methyloceanibacter
## 2023-03-15 20:23:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Salinivibrio
## 2023-03-15 20:23:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Desulfurobacteriales.f__Desulfurobacteriaceae.g__Thermovibrio
## 2023-03-15 20:23:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Cryobacterium
## 2023-03-15 20:23:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Myxosarcina
## 2023-03-15 20:23:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Flexilinea
## 2023-03-15 20:23:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Poxviridae.g__Alphaentomopoxvirus
## 2023-03-15 20:23:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Leeia
## 2023-03-15 20:23:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Aerococcaceae.g__Eremococcus
## 2023-03-15 20:23:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natronobacterium
## 2023-03-15 20:23:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Halotalea
## 2023-03-15 20:23:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Chelonobacter
## 2023-03-15 20:23:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Basfia
## 2023-03-15 20:23:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Cyanobacterium
## 2023-03-15 20:23:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Rubidibacter
## 2023-03-15 20:23:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Flaviramulus
## 2023-03-15 20:23:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Gottschalkia
## 2023-03-15 20:23:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiocystis
## 2023-03-15 20:23:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Sfi1unalikevirus
## 2023-03-15 20:23:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Sphingorhabdus
## 2023-03-15 20:23:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Anaerophaga
## 2023-03-15 20:23:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Phikzlikevirus
## 2023-03-15 20:23:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylothermaceae.g__Methylohalobius
## 2023-03-15 20:23:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Rhodothermaeota.c__Balneolia.o__Balneolales.f__Balneolaceae.g__Balneola
## 2023-03-15 20:23:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Aromatoleum
## 2023-03-15 20:23:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.c__Spartobacteria.g__Terrimicrobium
## 2023-03-15 20:23:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Hepadnaviridae.g__Orthohepadnavirus
## 2023-03-15 20:23:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Puniceibacterium
## 2023-03-15 20:23:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Rudanella
## 2023-03-15 20:23:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Nautilia
## 2023-03-15 20:23:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Crocinitomicaceae.g__Crocinitomix
## 2023-03-15 20:23:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Bromoviridae.g__Cucumovirus
## 2023-03-15 20:23:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermodesulfobiaceae.g__Thermodesulfobium
## 2023-03-15 20:23:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Myxococcaceae.g__Corallococcus
## 2023-03-15 20:23:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Microvirgula
## 2023-03-15 20:23:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Poxviridae.g__Yatapoxvirus
## 2023-03-15 20:23:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Thermoproteales.f__Thermoproteaceae.g__Vulcanisaeta
## 2023-03-15 20:23:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfonatronospira
## 2023-03-15 20:23:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Flagellimonas
## 2023-03-15 20:23:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Agarivorans
## 2023-03-15 20:23:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Actinotignum
## 2023-03-15 20:23:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Cryomorphaceae.g__Owenweeksia
## 2023-03-15 20:23:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Mesoaciditogales.f__Mesoaciditogaceae.g__Mesoaciditoga
## 2023-03-15 20:23:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Aurantimonadaceae.g__Fulvimarina
## 2023-03-15 20:23:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Youngiibacter
## 2023-03-15 20:23:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_IV._Incertae_Sedis.g__Mahella
## 2023-03-15 20:23:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Allokutzneria
## 2023-03-15 20:23:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Afifella
## 2023-03-15 20:23:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Candidatus_Photodesmus
## 2023-03-15 20:23:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Pseudaminobacter
## 2023-03-15 20:23:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Herbiconiux
## 2023-03-15 20:23:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Candidatus_Ruthia
## 2023-03-15 20:23:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanolacinia
## 2023-03-15 20:23:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Deefgea
## 2023-03-15 20:23:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Ammonifex
## 2023-03-15 20:23:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Pyramidobacter
## 2023-03-15 20:23:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Solitalea
## 2023-03-15 20:23:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Phaeodactylibacter
## 2023-03-15 20:23:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sedimentitalea
## 2023-03-15 20:23:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Fusobacteriaceae.g__Cetobacterium
## 2023-03-15 20:23:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Acaricomes
## 2023-03-15 20:23:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.o__Bacteroidetes_Order_II._Incertae_sedis.f__Rhodothermaceae.g__Salinibacter
## 2023-03-15 20:23:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Thermosynechococcus
## 2023-03-15 20:23:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Spirochaetaceae.g__Salinispira
## 2023-03-15 20:23:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Thermanaerothrix
## 2023-03-15 20:23:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ketogulonicigenium
## 2023-03-15 20:23:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Bifidobacteriales.f__Bifidobacteriaceae.g__Parascardovia
## 2023-03-15 20:23:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Campylobacteraceae.g__Sulfurospirillum
## 2023-03-15 20:23:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Oxalobacteraceae.g__Pseudoduganella
## 2023-03-15 20:23:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Obesumbacterium
## 2023-03-15 20:23:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Jejuia
## 2023-03-15 20:23:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Dermatophilus
## 2023-03-15 20:23:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Pseudobutyrivibrio
## 2023-03-15 20:23:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Wohlfahrtiimonas
## 2023-03-15 20:23:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Chroococcidiopsis
## 2023-03-15 20:23:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.g__Nitratiruptor
## 2023-03-15 20:23:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Leadbetterella
## 2023-03-15 20:23:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylococcus
## 2023-03-15 20:23:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Candidatus_Phaeomarinobacter
## 2023-03-15 20:23:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Eggerthia
## 2023-03-15 20:23:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Hellea
## 2023-03-15 20:23:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.g__Timonella
## 2023-03-15 20:23:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Hydrogenobacter
## 2023-03-15 20:23:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Flaviflexus
## 2023-03-15 20:23:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Cyanobium
## 2023-03-15 20:23:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Thioploca
## 2023-03-15 20:23:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Amphibacillus
## 2023-03-15 20:23:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Ignatzschineria
## 2023-03-15 20:23:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.g__Thermosulfidibacter
## 2023-03-15 20:23:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Bdellovibrionales.f__Halobacteriovoraceae.g__Halobacteriovorax
## 2023-03-15 20:23:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.o__Bacteroidetes_Order_II._Incertae_sedis.f__Rhodothermaceae.g__Salisaeta
## 2023-03-15 20:23:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Isosphaeraceae.g__Singulisphaera
## 2023-03-15 20:23:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Paraoerskovia
## 2023-03-15 20:23:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Candidatus_Puniceispirillum
## 2023-03-15 20:23:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Cryocola
## 2023-03-15 20:23:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Thermomonosporaceae.g__Thermomonospora
## 2023-03-15 20:23:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Novispirillum
## 2023-03-15 20:23:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Paramesorhizobium
## 2023-03-15 20:23:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Thalassotalea
## 2023-03-15 20:23:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Caliciviridae.g__Vesivirus
## 2023-03-15 20:23:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pragia
## 2023-03-15 20:23:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Longilinea
## 2023-03-15 20:23:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Thaumarchaeota.g__Candidatus_Nitrosopelagicus
## 2023-03-15 20:23:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Joostella
## 2023-03-15 20:23:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Mimiviridae.g__Cafeteriavirus
## 2023-03-15 20:23:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Kerstersia
## 2023-03-15 20:23:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Derxia
## 2023-03-15 20:23:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Aquamavirus
## 2023-03-15 20:23:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Hepeviridae.g__Piscihepevirus
## 2023-03-15 20:23:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Isosphaeraceae.g__Isosphaera
## 2023-03-15 20:23:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Thermopetrobacter
## 2023-03-15 20:23:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Riesia
## 2023-03-15 20:23:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Rhodovibrio
## 2023-03-15 20:23:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.g__Nitratifractor
## 2023-03-15 20:23:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Bdellovibrionales.f__Bacteriovoracaceae.g__Bacteriovorax
## 2023-03-15 20:23:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Sediminibacter
## 2023-03-15 20:23:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Cyclobacterium
## 2023-03-15 20:23:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Archaeoglobi.o__Archaeoglobales.f__Archaeoglobaceae.g__Geoglobus
## 2023-03-15 20:23:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Candidatus_Neoehrlichia
## 2023-03-15 20:23:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Ignavibacteriae.c__Ignavibacteria.o__Ignavibacteriales.f__Ignavibacteriaceae.g__Ignavibacterium
## 2023-03-15 20:23:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Aeribacillus
## 2023-03-15 20:23:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Dethiosulfovibrio
## 2023-03-15 20:23:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Oxobacter
## 2023-03-15 20:23:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudooceanicola
## 2023-03-15 20:23:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Vibrio
## 2023-03-15 20:23:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Franconibacter
## 2023-03-15 20:23:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Lentibacillus
## 2023-03-15 20:23:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Desulfuromonadaceae.g__Desulfuromonas
## 2023-03-15 20:23:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Shimwellia
## 2023-03-15 20:23:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Stigonematales.g__Mastigocladopsis
## 2023-03-15 20:23:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Brenneria
## 2023-03-15 20:23:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Aestuariivita
## 2023-03-15 20:23:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudodonghicola
## 2023-03-15 20:23:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Bunyaviridae.g__Orthobunyavirus
## 2023-03-15 20:23:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Enterovirus
## 2023-03-15 20:23:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Nitrincola
## 2023-03-15 20:23:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Xylanimonas
## 2023-03-15 20:23:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Mariniradius
## 2023-03-15 20:23:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Spongiibacteraceae.g__Spongiibacter
## 2023-03-15 20:23:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfocapsa
## 2023-03-15 20:23:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudorhodobacter
## 2023-03-15 20:23:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Proteiniclasticum
## 2023-03-15 20:23:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Arenaviridae.g__Arenavirus
## 2023-03-15 20:23:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylovulum
## 2023-03-15 20:23:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Chloroherpeton
## 2023-03-15 20:23:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfonatronovibrio
## 2023-03-15 20:23:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Salipiger
## 2023-03-15 20:23:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.g__Kallipyga
## 2023-03-15 20:23:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Denitrobacterium
## 2023-03-15 20:23:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Silanimonas
## 2023-03-15 20:23:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Haloterrigena
## 2023-03-15 20:23:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Echinicola
## 2023-03-15 20:23:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Anelloviridae.g__Gammatorquevirus
## 2023-03-15 20:23:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Kandleria
## 2023-03-15 20:23:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Aquamicrobium
## 2023-03-15 20:23:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Shuttleworthia
## 2023-03-15 20:23:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Gluconacetobacter
## 2023-03-15 20:23:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Sporomusaceae.g__Pelosinus
## 2023-03-15 20:23:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Coprococcus
## 2023-03-15 20:23:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Enterorhabdus
## 2023-03-15 20:23:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Oceaniovalibus
## 2023-03-15 20:23:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Chlamydiaceae.g__Chlamydia
## 2023-03-15 20:23:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Richelia
## 2023-03-15 20:23:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Siansivirga
## 2023-03-15 20:23:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Proteus
## 2023-03-15 20:23:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Pseudoflavonifractor
## 2023-03-15 20:23:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.g__Candidatus_Babela
## 2023-03-15 20:23:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Galbibacter
## 2023-03-15 20:23:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Mucispirillum
## 2023-03-15 20:23:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Flexistipes
## 2023-03-15 20:23:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Granulibacter
## 2023-03-15 20:23:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Bacteroidaceae.g__Bacteroides
## 2023-03-15 20:23:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Marvinbryantia
## 2023-03-15 20:23:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Hydrogenophilales.f__Hydrogenophilaceae.g__Thiobacillus
## 2023-03-15 20:23:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Christensenellaceae.g__Christensenella
## 2023-03-15 20:23:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Virgibacillus
## 2023-03-15 20:23:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Mitsuaria
## 2023-03-15 20:23:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Caulobacterales.f__Caulobacteraceae.g__Woodsholea
## 2023-03-15 20:23:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Acidocella
## 2023-03-15 20:23:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prevotellaceae.g__Hallella
## 2023-03-15 20:23:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Uliginosibacterium
## 2023-03-15 20:23:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Terasakiella
## 2023-03-15 20:23:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Kushneria
## 2023-03-15 20:23:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halanaerobiaceae.g__Halothermothrix
## 2023-03-15 20:23:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Microterricola
## 2023-03-15 20:23:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Anaerostipes
## 2023-03-15 20:23:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Halobacteroides
## 2023-03-15 20:23:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Cucumibacter
## 2023-03-15 20:23:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Thermales.f__Thermaceae.g__Marinithermus
## 2023-03-15 20:23:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Vitreoscilla
## 2023-03-15 20:23:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Synergistes
## 2023-03-15 20:23:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Tunalikevirus
## 2023-03-15 20:23:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Beggiatoa
## 2023-03-15 20:23:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Kineosporiales.f__Kineosporiaceae.g__Kineosporia
## 2023-03-15 20:23:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zunongwangia
## 2023-03-15 20:23:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinosynnema
## 2023-03-15 20:23:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Geobacteraceae.g__Geopsychrobacter
## 2023-03-15 20:23:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oleiphilaceae.g__Oleiphilus
## 2023-03-15 20:23:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Thiolapillus
## 2023-03-15 20:23:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinopolysporales.f__Actinopolysporaceae.g__Actinopolyspora
## 2023-03-15 20:23:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Pleurocapsa
## 2023-03-15 20:23:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Frateuria
## 2023-03-15 20:23:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Deferribacter
## 2023-03-15 20:23:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Kribbella
## 2023-03-15 20:23:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Amoebophilaceae.g__Candidatus_Amoebophilus
## 2023-03-15 20:23:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Asaia
## 2023-03-15 20:23:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Caminibacter
## 2023-03-15 20:23:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Gallaecimonas
## 2023-03-15 20:23:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Thermoplasmatales.f__Picrophilaceae.g__Picrophilus
## 2023-03-15 20:23:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Simiduia
## 2023-03-15 20:23:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Ishikawaella
## 2023-03-15 20:23:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Fabavirus
## 2023-03-15 20:23:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Acidobacterium
## 2023-03-15 20:23:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Yonghaparkia
## 2023-03-15 20:23:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Chelativorans
## 2023-03-15 20:23:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sediminimonas
## 2023-03-15 20:23:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Octadecabacter
## 2023-03-15 20:23:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Eudoraea
## 2023-03-15 20:23:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Stappia
## 2023-03-15 20:23:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.f__Leptospiraceae.g__Leptonema
## 2023-03-15 20:23:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfarculales.f__Desulfarculaceae.g__Desulfarculus
## 2023-03-15 20:23:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bradyrhizobiaceae.g__Tardiphaga
## 2023-03-15 20:23:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Palaeococcus
## 2023-03-15 20:23:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Maritimibacter
## 2023-03-15 20:23:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Lunatimonas
## 2023-03-15 20:23:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Leucothrix
## 2023-03-15 20:23:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Thermales.f__Thermaceae.g__Oceanithermus
## 2023-03-15 20:23:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylobacillus
## 2023-03-15 20:23:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Ewingella
## 2023-03-15 20:23:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Microchaetaceae.g__Microchaete
## 2023-03-15 20:23:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Pusillimonas
## 2023-03-15 20:23:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Tepidicaulis
## 2023-03-15 20:23:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Rouxiella
## 2023-03-15 20:23:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Ponticaulis
## 2023-03-15 20:23:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfohalobium
## 2023-03-15 20:23:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Crocinitomicaceae.g__Fluviicola
## 2023-03-15 20:23:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Spirochaetaceae.g__Treponema
## 2023-03-15 20:23:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Pelistega
## 2023-03-15 20:23:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Levilinea
## 2023-03-15 20:23:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Rubritepida
## 2023-03-15 20:23:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Alphacoronavirus
## 2023-03-15 20:23:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thalassobacter
## 2023-03-15 20:23:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Salegentibacter
## 2023-03-15 20:23:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Salinimicrobium
## 2023-03-15 20:23:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Hahellaceae.g__Zooshikella
## 2023-03-15 20:23:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Crenobacter
## 2023-03-15 20:23:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Fusobacteriaceae.g__Ilyobacter
## 2023-03-15 20:23:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Poxviridae.g__Leporipoxvirus
## 2023-03-15 20:23:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Andreprevotia
## 2023-03-15 20:23:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Gordoniaceae.g__Gordonia
## 2023-03-15 20:23:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanobacteriaceae.g__Methanosphaera
## 2023-03-15 20:23:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Baculoviridae.g__Deltabaculovirus
## 2023-03-15 20:23:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Peptostreptococcus
## 2023-03-15 20:23:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Leptolinea
## 2023-03-15 20:23:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Hafnia
## 2023-03-15 20:23:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Betacoronavirus
## 2023-03-15 20:23:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Steroidobacter
## 2023-03-15 20:23:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophaceae.g__Syntrophus
## 2023-03-15 20:23:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Chitinimonas
## 2023-03-15 20:23:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Austwickia
## 2023-03-15 20:23:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Melissococcus
## 2023-03-15 20:23:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Legionellaceae.g__Fluoribacter
## 2023-03-15 20:23:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Xenococcus
## 2023-03-15 20:23:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Propionispira
## 2023-03-15 20:23:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Verrucosispora
## 2023-03-15 20:23:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Aliagarivorans
## 2023-03-15 20:23:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Castellaniella
## 2023-03-15 20:23:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_III._Incertae_Sedis.g__Thermosediminibacter
## 2023-03-15 20:23:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Flavisolibacter
## 2023-03-15 20:23:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cardiobacteriales.f__Cardiobacteriaceae.g__Cardiobacterium
## 2023-03-15 20:23:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Starkeya
## 2023-03-15 20:23:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Kordiimonadales.f__Kordiimonadaceae.g__Kordiimonas
## 2023-03-15 20:23:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sagittula
## 2023-03-15 20:23:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Allochromatium
## 2023-03-15 20:23:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Dicistroviridae.g__Cripavirus
## 2023-03-15 20:23:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Leuconostocaceae.g__Leuconostoc
## 2023-03-15 20:23:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Anaerobacillus
## 2023-03-15 20:23:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Zymomonas
## 2023-03-15 20:23:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Nitrosococcus
## 2023-03-15 20:23:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Halieaceae.g__Congregibacter
## 2023-03-15 20:23:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Desulfurococcaceae.g__Ignicoccus
## 2023-03-15 20:23:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Diaphorobacter
## 2023-03-15 20:23:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Oceanicaulis
## 2023-03-15 20:23:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Luteibacter
## 2023-03-15 20:23:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Hydrogenibacillus
## 2023-03-15 20:23:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sulfitobacter
## 2023-03-15 20:23:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Sediminicola
## 2023-03-15 20:23:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Thermodesulfatator
## 2023-03-15 20:23:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Lactobacillaceae.g__Sharpea
## 2023-03-15 20:23:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Catelliglobosispora
## 2023-03-15 20:23:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Anaerovibrio
## 2023-03-15 20:23:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Candidatus_Stoquefichus
## 2023-03-15 20:23:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Sanguibacteroides
## 2023-03-15 20:23:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Dongia
## 2023-03-15 20:23:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Colwellia
## 2023-03-15 20:23:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Limnochordia.o__Limnochordales.f__Limnochordaceae.g__Limnochorda
## 2023-03-15 20:23:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Fibrobacteres.c__Fibrobacteria.o__Fibrobacterales.f__Fibrobacteraceae.g__Fibrobacter
## 2023-03-15 20:23:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Kluyvera
## 2023-03-15 20:23:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Pseudohongiella
## 2023-03-15 20:23:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Oerskovia
## 2023-03-15 20:23:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Desulfurococcaceae.g__Staphylothermus
## 2023-03-15 20:23:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.g__Phocaeicola
## 2023-03-15 20:24:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Catellicoccus
## 2023-03-15 20:24:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfarculales.f__Desulfarculaceae.g__Dethiosulfatarculus
## 2023-03-15 20:24:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Candidatus_Aquiluna
## 2023-03-15 20:24:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Dinoroseobacter
## 2023-03-15 20:24:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Helcococcus
## 2023-03-15 20:24:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Gemmobacter
## 2023-03-15 20:24:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Polydnaviridae.g__Ichnovirus
## 2023-03-15 20:24:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Hahellaceae.g__Hahella
## 2023-03-15 20:24:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Terracoccus
## 2023-03-15 20:24:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Carboxydothermus
## 2023-03-15 20:24:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Leptotrichiaceae.g__Streptobacillus
## 2023-03-15 20:24:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Isoptericola
## 2023-03-15 20:24:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Blastomonas
## 2023-03-15 20:24:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Halorhodospira
## 2023-03-15 20:24:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Microthrixaceae.g__Candidatus_Microthrix
## 2023-03-15 20:24:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Simkaniaceae.g__Simkania
## 2023-03-15 20:24:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Hydrogenothermaceae.g__Persephonella
## 2023-03-15 20:24:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Anaerofustis
## 2023-03-15 20:24:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Halonatronum
## 2023-03-15 20:24:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Aquimarina
## 2023-03-15 20:24:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Fictibacillus
## 2023-03-15 20:24:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Thermanaerovibrio
## 2023-03-15 20:24:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Wolbachia
## 2023-03-15 20:24:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Aminomonas
## 2023-03-15 20:24:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Ideonella
## 2023-03-15 20:24:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Ilumatobacter
## 2023-03-15 20:24:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ahrensia
## 2023-03-15 20:24:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Thalassobaculum
## 2023-03-15 20:24:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chrysiogenetes.c__Chrysiogenetes.o__Chrysiogenales.f__Chrysiogenaceae.g__Desulfurispirillum
## 2023-03-15 20:24:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Acidobacteria.c__Solibacteres.o__Solibacterales.g__Bryobacter
## 2023-03-15 20:24:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Enteractinococcus
## 2023-03-15 20:24:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Chania
## 2023-03-15 20:24:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Pseudolabrys
## 2023-03-15 20:24:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Granulicella
## 2023-03-15 20:24:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Lentisphaerae.c__Lentisphaeria.o__Lentisphaerales.f__Lentisphaeraceae.g__Lentisphaera
## 2023-03-15 20:24:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Virgaviridae.g__Pomovirus
## 2023-03-15 20:24:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinomycetospora
## 2023-03-15 20:24:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Aeromonas
## 2023-03-15 20:24:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Planktomarina
## 2023-03-15 20:24:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Kozakia
## 2023-03-15 20:24:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Thermocrispum
## 2023-03-15 20:24:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Candidatus_Desulforudis
## 2023-03-15 20:24:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Polycyclovorans
## 2023-03-15 20:24:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Spounalikevirus
## 2023-03-15 20:24:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Stigonematales.g__Hapalosiphon
## 2023-03-15 20:24:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Kibdelosporangium
## 2023-03-15 20:24:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Kurthia
## 2023-03-15 20:24:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Faecalibaculum
## 2023-03-15 20:24:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Iridoviridae.g__Ranavirus
## 2023-03-15 20:24:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Mannheimia
## 2023-03-15 20:24:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Actinocatenispora
## 2023-03-15 20:24:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Silvibacterium
## 2023-03-15 20:24:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Sporolactobacillaceae.g__Tuberibacillus
## 2023-03-15 20:24:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.g__Thermorudis
## 2023-03-15 20:24:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Niabella
## 2023-03-15 20:24:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Yaniella
## 2023-03-15 20:24:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Methyloferula
## 2023-03-15 20:24:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Oceanospirillum
## 2023-03-15 20:24:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Nostoc
## 2023-03-15 20:24:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Prauserella
## 2023-03-15 20:24:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Sandarakinorhabdus
## 2023-03-15 20:24:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Phaeospirillum
## 2023-03-15 20:24:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Thioalkalimicrobium
## 2023-03-15 20:24:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Adenoviridae.g__Mastadenovirus
## 2023-03-15 20:24:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Oleiagrimonas
## 2023-03-15 20:24:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Halieaceae.g__Luminiphilus
## 2023-03-15 20:24:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Nonlabens
## 2023-03-15 20:24:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Pelagibacterium
## 2023-03-15 20:24:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Parvibaculum
## 2023-03-15 20:24:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Marinovum
## 2023-03-15 20:24:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Aminobacterium
## 2023-03-15 20:24:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Longispora
## 2023-03-15 20:24:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Nitrosomonadales.f__Nitrosomonadaceae.g__Nitrosospira
## 2023-03-15 20:24:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomonas
## 2023-03-15 20:24:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Acidimicrobium
## 2023-03-15 20:24:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobiaceae.g__Haloferula
## 2023-03-15 20:24:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methermicoccaceae.g__Methermicoccus
## 2023-03-15 20:24:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Micavibrio
## 2023-03-15 20:24:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Capnocytophaga
## 2023-03-15 20:24:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Neptunomonas
## 2023-03-15 20:24:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_III._Incertae_Sedis.g__Caldicellulosiruptor
## 2023-03-15 20:24:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophaceae.g__Desulfomonile
## 2023-03-15 20:24:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Croceibacter
## 2023-03-15 20:24:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Confluentimicrobium
## 2023-03-15 20:24:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Tachikawaea
## 2023-03-15 20:24:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.f__Leptospiraceae.g__Turneriella
## 2023-03-15 20:24:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Gemmata
## 2023-03-15 20:24:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Rubinisphaera
## 2023-03-15 20:24:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Acidobacteria.c__Solibacteres.o__Solibacterales.f__Solibacteraceae.g__Candidatus_Solibacter
## 2023-03-15 20:24:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Elusimicrobia.c__Elusimicrobia.o__Elusimicrobiales.f__Elusimicrobiaceae.g__Elusimicrobium
## 2023-03-15 20:24:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Magnetococcales.f__Magnetococcaceae.g__Magnetococcus
## 2023-03-15 20:24:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Polyangiaceae.g__Chondromyces
## 2023-03-15 20:24:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfovibrionaceae.g__Lawsonia
## 2023-03-15 20:24:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Ornatilinea
## 2023-03-15 20:24:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Thermonemataceae.g__Thermonema
## 2023-03-15 20:24:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chrysiogenetes.c__Chrysiogenetes.o__Chrysiogenales.f__Chrysiogenaceae.g__Chrysiogenes
## 2023-03-15 20:24:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Caulobacterales.f__Caulobacteraceae.g__Phenylobacterium
## 2023-03-15 20:24:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Jiangellales.f__Jiangellaceae.g__Jiangella
## 2023-03-15 20:24:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Simplexvirus
## 2023-03-15 20:24:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Sphaerotilus
## 2023-03-15 20:24:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Salinarchaeum
## 2023-03-15 20:24:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.g__Reyranella
## 2023-03-15 20:24:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Arenimonas
## 2023-03-15 20:24:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zhouia
## 2023-03-15 20:24:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Rikenellaceae.g__Rikenella
## 2023-03-15 20:24:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Ferriphaselus
## 2023-03-15 20:24:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Tanticharoenia
## 2023-03-15 20:24:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Shimia
## 2023-03-15 20:24:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Arcanobacterium
## 2023-03-15 20:24:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Filomicrobium
## 2023-03-15 20:24:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Enorma
## 2023-03-15 20:24:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Eggerthella
## 2023-03-15 20:24:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Lutibaculum
## 2023-03-15 20:24:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Aquincola
## 2023-03-15 20:24:12 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Mobilicoccus
## 2023-03-15 20:24:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Paenirhodobacter
## 2023-03-15 20:24:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Microscilla
## 2023-03-15 20:24:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Neorickettsia
## 2023-03-15 20:24:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Opitutales.f__Opitutaceae.g__Cephaloticoccus
## 2023-03-15 20:24:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Senegalimassilia
## 2023-03-15 20:24:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cardiobacteriales.f__Cardiobacteriaceae.g__Dichelobacter
## 2023-03-15 20:24:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Thermococcus
## 2023-03-15 20:24:13 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Oceanibaculum
## 2023-03-15 20:24:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.o__Methylacidiphilales.f__Methylacidiphilaceae.g__Methylacidiphilum
## 2023-03-15 20:24:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Methylibium
## 2023-03-15 20:24:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Thauera
## 2023-03-15 20:24:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Polyangiaceae.g__Sorangium
## 2023-03-15 20:24:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Dechloromonas
## 2023-03-15 20:24:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Propionibacteriaceae.g__Propionimicrobium
## 2023-03-15 20:24:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Gulosibacter
## 2023-03-15 20:24:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Olleya
## 2023-03-15 20:24:14 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Gordonibacter
## 2023-03-15 20:24:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Roseburia
## 2023-03-15 20:24:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseovarius
## 2023-03-15 20:24:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Rikenellaceae.g__Mucinivorans
## 2023-03-15 20:24:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Alkaliflexus
## 2023-03-15 20:24:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitinilyticum
## 2023-03-15 20:24:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseivivax
## 2023-03-15 20:24:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Viridibacillus
## 2023-03-15 20:24:15 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Histophilus
## 2023-03-15 20:24:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Vitellibacter
## 2023-03-15 20:24:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Saccharibacter
## 2023-03-15 20:24:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Mitsuokella
## 2023-03-15 20:24:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Emticicia
## 2023-03-15 20:24:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Puniceicoccales.f__Puniceicoccaceae.g__Coraliomargarita
## 2023-03-15 20:24:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Cesiribacter
## 2023-03-15 20:24:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Rhodospirillum
## 2023-03-15 20:24:16 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Thermomonas
## 2023-03-15 20:24:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Rudaea
## 2023-03-15 20:24:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Riemerella
## 2023-03-15 20:24:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Paludibacterium
## 2023-03-15 20:24:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Kineosporiales.f__Kineosporiaceae.g__Angustibacter
## 2023-03-15 20:24:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylobacteriaceae.g__Meganema
## 2023-03-15 20:24:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Wenxinia
## 2023-03-15 20:24:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Dehalococcoidia.g__Dehalogenimonas
## 2023-03-15 20:24:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Magnetospira
## 2023-03-15 20:24:17 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Planomonospora
## 2023-03-15 20:24:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Flavihumibacter
## 2023-03-15 20:24:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Henriciella
## 2023-03-15 20:24:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Desulfurispora
## 2023-03-15 20:24:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Agrococcus
## 2023-03-15 20:24:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.g__Caedibacter
## 2023-03-15 20:24:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Maribius
## 2023-03-15 20:24:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halorhabdus
## 2023-03-15 20:24:18 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.g__Emaravirus
## 2023-03-15 20:24:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Candidatus_Profftella
## 2023-03-15 20:24:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Johnsonella
## 2023-03-15 20:24:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Skermanella
## 2023-03-15 20:24:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Holosporaceae.g__Holospora
## 2023-03-15 20:24:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Ferrimicrobium
## 2023-03-15 20:24:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Weeksella
## 2023-03-15 20:24:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Anaerolinea
## 2023-03-15 20:24:19 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Glycomycetales.f__Glycomycetaceae.g__Glycomyces
## 2023-03-15 20:24:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Apibacter
## 2023-03-15 20:24:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Desulfurobacteriales.f__Desulfurobacteriaceae.g__Desulfurobacterium
## 2023-03-15 20:24:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Roseivirga
## 2023-03-15 20:24:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulforegula
## 2023-03-15 20:24:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Leptotrichiaceae.g__Sebaldella
## 2023-03-15 20:24:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Lentimicrobiaceae.g__Lentimicrobium
## 2023-03-15 20:24:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfosarcina
## 2023-03-15 20:24:20 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Listeriaceae.g__Listeria
## 2023-03-15 20:24:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sneathiellales.f__Sneathiellaceae.g__Sneathiella
## 2023-03-15 20:24:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Dictyoglomi.c__Dictyoglomia.o__Dictyoglomales.f__Dictyoglomaceae.g__Dictyoglomus
## 2023-03-15 20:24:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Tenacibaculum
## 2023-03-15 20:24:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Lewinella
## 2023-03-15 20:24:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thioflavicoccus
## 2023-03-15 20:24:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Gimesia
## 2023-03-15 20:24:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Marinilabilia
## 2023-03-15 20:24:21 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Dokdonella
## 2023-03-15 20:24:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Kinetoplastibacterium
## 2023-03-15 20:24:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Spirosoma
## 2023-03-15 20:24:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Poxviridae.g__Capripoxvirus
## 2023-03-15 20:24:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Belnapia
## 2023-03-15 20:24:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Methylopila
## 2023-03-15 20:24:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Citromicrobium
## 2023-03-15 20:24:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Knoellia
## 2023-03-15 20:24:22 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfobulbus
## 2023-03-15 20:24:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Hirschia
## 2023-03-15 20:24:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Leifsonia
## 2023-03-15 20:24:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Ectothiorhodospira
## 2023-03-15 20:24:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halorubrum
## 2023-03-15 20:24:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Frankiales.f__Sporichthyaceae.g__Sporichthya
## 2023-03-15 20:24:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Caldicoprobacteraceae.g__Caldicoprobacter
## 2023-03-15 20:24:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Polynucleobacter
## 2023-03-15 20:24:23 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Maricaulis
## 2023-03-15 20:24:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Methylocella
## 2023-03-15 20:24:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Nesiotobacter
## 2023-03-15 20:24:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Pseudomonadaceae.g__Oblitimonas
## 2023-03-15 20:24:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Fodinicurvata
## 2023-03-15 20:24:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Arcticibacter
## 2023-03-15 20:24:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Aliterella
## 2023-03-15 20:24:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Paucibacter
## 2023-03-15 20:24:24 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophaceae.g__Desulfobacca
## 2023-03-15 20:24:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Orbales.f__Orbaceae.g__Frischella
## 2023-03-15 20:24:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Bellilinea
## 2023-03-15 20:24:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Flexithrix
## 2023-03-15 20:24:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Anaerobaculum
## 2023-03-15 20:24:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Sutterellaceae.g__Sutterella
## 2023-03-15 20:24:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Haematospirillum
## 2023-03-15 20:24:25 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Muricauda
## 2023-03-15 20:24:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylosarcina
## 2023-03-15 20:24:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhizobiaceae.g__Neorhizobium
## 2023-03-15 20:24:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Gemmatimonadetes.c__Gemmatimonadetes.o__Gemmatimonadales.f__Gemmatimonadaceae.g__Gemmatirosa
## 2023-03-15 20:24:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Campylobacteraceae.g__Campylobacter
## 2023-03-15 20:24:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Nakamurellales.f__Nakamurellaceae.g__Nakamurella
## 2023-03-15 20:24:26 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Kamptonema
## 2023-03-15 20:24:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Hyphomicrobium
## 2023-03-15 20:24:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.g__Tropheryma
## 2023-03-15 20:24:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Erysipelatoclostridium
## 2023-03-15 20:24:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Sciscionella
## 2023-03-15 20:24:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Kosakonia
## 2023-03-15 20:24:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Flaviviridae.g__Pestivirus
## 2023-03-15 20:24:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Microtetraspora
## 2023-03-15 20:24:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylobacteriaceae.g__Microvirga
## 2023-03-15 20:24:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Hamadaea
## 2023-03-15 20:24:27 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Faecalicoccus
## 2023-03-15 20:24:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Desulfuromonadaceae.g__Pelobacter
## 2023-03-15 20:24:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Kiloniellales.f__Kiloniellaceae.g__Kiloniella
## 2023-03-15 20:24:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Actinobaculum
## 2023-03-15 20:24:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Halocynthiibacter
## 2023-03-15 20:24:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Thermotogaceae.g__Thermotoga
## 2023-03-15 20:24:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pluralibacter
## 2023-03-15 20:24:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Thiorhodospira
## 2023-03-15 20:24:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Marivirga
## 2023-03-15 20:24:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Hymenobacter
## 2023-03-15 20:24:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Geofilum
## 2023-03-15 20:24:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Saccharibacillus
## 2023-03-15 20:24:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Terrabacter
## 2023-03-15 20:24:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Deinococcales.f__Trueperaceae.g__Truepera
## 2023-03-15 20:24:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Elusimicrobia.c__Endomicrobia.o__Endomicrobiales.f__Endomicrobiaceae.g__Endomicrobium
## 2023-03-15 20:24:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Rubrivivax
## 2023-03-15 20:24:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobia_subdivision_3.g__Pedosphaera
## 2023-03-15 20:24:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Acetohalobium
## 2023-03-15 20:24:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Candidatus_Korarchaeota.g__Candidatus_Korarchaeum
## 2023-03-15 20:24:29 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Symbiobacteriaceae.g__Symbiobacterium
## 2023-03-15 20:24:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Pirellula
## 2023-03-15 20:24:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Mycoplasmatales.f__Mycoplasmataceae.g__Ureaplasma
## 2023-03-15 20:24:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Nitrospirae.c__Nitrospira.o__Nitrospirales.f__Nitrospiraceae.g__Candidatus_Magnetobacterium
## 2023-03-15 20:24:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Agreia
## 2023-03-15 20:24:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Phycodnaviridae.g__Prasinovirus
## 2023-03-15 20:24:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Xylella
## 2023-03-15 20:24:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Porticoccaceae.g__Porticoccus
## 2023-03-15 20:24:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Staphylococcaceae.g__Macrococcus
## 2023-03-15 20:24:30 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Pseudobacteroides
## 2023-03-15 20:24:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Catenulisporales.f__Actinospicaceae.g__Actinospica
## 2023-03-15 20:24:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Eikenella
## 2023-03-15 20:24:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Vulgatibacteraceae.g__Vulgatibacter
## 2023-03-15 20:24:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Haliscomenobacter
## 2023-03-15 20:24:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Blautia
## 2023-03-15 20:24:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Rhodoluna
## 2023-03-15 20:24:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Saccharomonospora
## 2023-03-15 20:24:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhizobiaceae.g__Agrobacterium
## 2023-03-15 20:24:31 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Succinivibrionaceae.g__Succinivibrio
## 2023-03-15 20:24:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Waikavirus
## 2023-03-15 20:24:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Segetibacter
## 2023-03-15 20:24:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Thermoactinomycetaceae.g__Thermoactinomyces
## 2023-03-15 20:24:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Mizugakiibacter
## 2023-03-15 20:24:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Amantichitinum
## 2023-03-15 20:24:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Hydrogenivirga
## 2023-03-15 20:24:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Lebetimonas
## 2023-03-15 20:24:32 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Methylophaga
## 2023-03-15 20:24:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Criblamydiaceae.g__Criblamydia
## 2023-03-15 20:24:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Papillomaviridae.g__Omegapapillomavirus
## 2023-03-15 20:24:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pantoea
## 2023-03-15 20:24:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Nesterenkonia
## 2023-03-15 20:24:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Microbispora
## 2023-03-15 20:24:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.o__Sphaerobacterales.f__Sphaerobacteraceae.g__Sphaerobacter
## 2023-03-15 20:24:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Raoultella
## 2023-03-15 20:24:33 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Robinsoniella
## 2023-03-15 20:24:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.g__Candidatus_Hepatobacter
## 2023-03-15 20:24:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Orenia
## 2023-03-15 20:24:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Candidatus_Soleaferrea
## 2023-03-15 20:24:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Thermobrachium
## 2023-03-15 20:24:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Salimicrobium
## 2023-03-15 20:24:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Defluviimonas
## 2023-03-15 20:24:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.g__Anaerosporomusa
## 2023-03-15 20:24:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Luteimonas
## 2023-03-15 20:24:34 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Candidatus_Arthromitus
## 2023-03-15 20:24:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Ornithobacterium
## 2023-03-15 20:24:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Gracilibacillus
## 2023-03-15 20:24:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Acidihalobacter
## 2023-03-15 20:24:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Schleiferiaceae.g__Schleiferia
## 2023-03-15 20:24:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Sediminibacterium
## 2023-03-15 20:24:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Slackia
## 2023-03-15 20:24:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Vagococcus
## 2023-03-15 20:24:35 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Herpesvirales.f__Alloherpesviridae.g__Batrachovirus
## 2023-03-15 20:24:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.g__Lawsonella
## 2023-03-15 20:24:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Alcanivoracaceae.g__Kangiella
## 2023-03-15 20:24:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Fervidobacteriaceae.g__Thermosipho
## 2023-03-15 20:24:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Dicistroviridae.g__Aparavirus
## 2023-03-15 20:24:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Plantibacter
## 2023-03-15 20:24:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Zetaproteobacteria.o__Mariprofundales.f__Mariprofundaceae.g__Mariprofundus
## 2023-03-15 20:24:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Amorphus
## 2023-03-15 20:24:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zobellia
## 2023-03-15 20:24:36 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Retroviridae.g__Alpharetrovirus
## 2023-03-15 20:24:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfovermiculus
## 2023-03-15 20:24:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Xanthobacter
## 2023-03-15 20:24:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Spiribacter
## 2023-03-15 20:24:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Halothiobacillaceae.g__Halothiobacillus
## 2023-03-15 20:24:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Lechevalieria
## 2023-03-15 20:24:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Enterococcus
## 2023-03-15 20:24:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Tatumella
## 2023-03-15 20:24:37 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomicrobium
## 2023-03-15 20:24:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Coprobacillus
## 2023-03-15 20:24:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Propionibacteriaceae.g__Granulicoccus
## 2023-03-15 20:24:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Acidobacteria.c__Holophagae.o__Holophagales.f__Holophagaceae.g__Geothrix
## 2023-03-15 20:24:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Chelatococcus
## 2023-03-15 20:24:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Actinoplanes
## 2023-03-15 20:24:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Cycloclasticus
## 2023-03-15 20:24:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseobacter
## 2023-03-15 20:24:38 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Jonesiaceae.g__Jonesia
## 2023-03-15 20:24:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thalassobius
## 2023-03-15 20:24:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Kineosphaera
## 2023-03-15 20:24:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Partitiviridae.g__Betapartitivirus
## 2023-03-15 20:24:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Pseudonocardia
## 2023-03-15 20:24:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Solibacillus
## 2023-03-15 20:24:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Candidatus_Cloacimonetes.g__Candidatus_Cloacimonas
## 2023-03-15 20:24:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Sporomusaceae.g__Anaeromusa
## 2023-03-15 20:24:39 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Rufibacter
## 2023-03-15 20:24:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Catonella
## 2023-03-15 20:24:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanothermaceae.g__Methanothermus
## 2023-03-15 20:24:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Xylophilus
## 2023-03-15 20:24:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Adhaeribacter
## 2023-03-15 20:24:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Pleomorphomonas
## 2023-03-15 20:24:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Staphylococcaceae.g__Jeotgalicoccus
## 2023-03-15 20:24:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Epulopiscium
## 2023-03-15 20:24:40 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Entomoplasmatales.f__Entomoplasmataceae.g__Entomoplasma
## 2023-03-15 20:24:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Planctomyces
## 2023-03-15 20:24:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Mangrovimonas
## 2023-03-15 20:24:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Inquilinus
## 2023-03-15 20:24:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Heliobacteriaceae.g__Heliobacterium
## 2023-03-15 20:24:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Flavonifractor
## 2023-03-15 20:24:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Carnimonas
## 2023-03-15 20:24:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Cellulosilyticum
## 2023-03-15 20:24:41 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pelagibaca
## 2023-03-15 20:24:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halapricum
## 2023-03-15 20:24:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Celeribacter
## 2023-03-15 20:24:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Acidobacteria.c__Blastocatellia.g__Chloracidobacterium
## 2023-03-15 20:24:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Promicromonospora
## 2023-03-15 20:24:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Fibrella
## 2023-03-15 20:24:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Oribacterium
## 2023-03-15 20:24:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Falsirhodobacter
## 2023-03-15 20:24:42 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Finegoldia
## 2023-03-15 20:24:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfurellales.f__Desulfurellaceae.g__Desulfurella
## 2023-03-15 20:24:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Arsenicicoccus
## 2023-03-15 20:24:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermabacteraceae.g__Dermabacter
## 2023-03-15 20:24:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Jonquetella
## 2023-03-15 20:24:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiocapsa
## 2023-03-15 20:24:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Mardivirus
## 2023-03-15 20:24:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Astroviridae.g__Mamastrovirus
## 2023-03-15 20:24:43 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.g__Higrevirus
## 2023-03-15 20:24:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.g__Fangia
## 2023-03-15 20:24:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Rhodobacter
## 2023-03-15 20:24:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Salinisphaerales.f__Salinisphaeraceae.g__Salinisphaera
## 2023-03-15 20:24:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Bifidobacteriales.f__Bifidobacteriaceae.g__Scardovia
## 2023-03-15 20:24:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Paracaedibacteraceae.g__Candidatus_Paracaedibacter
## 2023-03-15 20:24:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Tymovirales.f__Tymoviridae.g__Tymovirus
## 2023-03-15 20:24:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Petrotogales.g__Defluviitoga
## 2023-03-15 20:24:44 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Sanguibacteraceae.g__Sanguibacter
## 2023-03-15 20:24:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Virgaviridae.g__Tobamovirus
## 2023-03-15 20:24:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Sodalis
## 2023-03-15 20:24:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Fervidicella
## 2023-03-15 20:24:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophobacteraceae.g__Syntrophobacter
## 2023-03-15 20:24:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Oceanimonas
## 2023-03-15 20:24:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Belliella
## 2023-03-15 20:24:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Thermobacillus
## 2023-03-15 20:24:45 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Spo1virus
## 2023-03-15 20:24:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Thermomonosporaceae.g__Spirillospora
## 2023-03-15 20:24:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Salivirus
## 2023-03-15 20:24:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Hylemonella
## 2023-03-15 20:24:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Thermosulfurimonas
## 2023-03-15 20:24:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Regiella
## 2023-03-15 20:24:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Muribacter
## 2023-03-15 20:24:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.g__Elioraea
## 2023-03-15 20:24:46 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Dehalococcoidia.o__Dehalococcoidales.f__Dehalococcoidaceae.g__Dehalococcoides
## 2023-03-15 20:24:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Caldilineae.o__Caldilineales.f__Caldilineaceae.g__Caldilinea
## 2023-03-15 20:24:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Asanoa
## 2023-03-15 20:24:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Advenella
## 2023-03-15 20:24:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Maribacter
## 2023-03-15 20:24:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Pseudarthrobacter
## 2023-03-15 20:24:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Robiginitomaculum
## 2023-03-15 20:24:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Nitrospirae.c__Nitrospira.o__Nitrospirales.f__Nitrospiraceae.g__Leptospirillum
## 2023-03-15 20:24:47 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfomicrobiaceae.g__Desulfomicrobium
## 2023-03-15 20:24:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Aneurinibacillus
## 2023-03-15 20:24:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Poxviridae.g__Betaentomopoxvirus
## 2023-03-15 20:24:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Rubellimicrobium
## 2023-03-15 20:24:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Papillomaviridae.g__Lambdapapillomavirus
## 2023-03-15 20:24:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Pararhodospirillum
## 2023-03-15 20:24:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiorhodovibrio
## 2023-03-15 20:24:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natronococcus
## 2023-03-15 20:24:48 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thioclava
## 2023-03-15 20:24:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Acetobacter
## 2023-03-15 20:24:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Hepatovirus
## 2023-03-15 20:24:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Blastochloris
## 2023-03-15 20:24:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Haemophilus
## 2023-03-15 20:24:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermacoccaceae.g__Luteipulveratus
## 2023-03-15 20:24:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Sandaracinaceae.g__Sandaracinus
## 2023-03-15 20:24:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Lampropedia
## 2023-03-15 20:24:49 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Wenzhouxiangellaceae.g__Wenzhouxiangella
## 2023-03-15 20:24:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinoalloteichus
## 2023-03-15 20:24:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Ventosimonadaceae.g__Ventosimonas
## 2023-03-15 20:24:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Pseudopedobacter
## 2023-03-15 20:24:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.g__Exiguobacterium
## 2023-03-15 20:24:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Bafinivirus
## 2023-03-15 20:24:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Aurantimonadaceae.g__Martelella
## 2023-03-15 20:24:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Phycicoccus
## 2023-03-15 20:24:50 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Crocosphaera
## 2023-03-15 20:24:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Pandoraea
## 2023-03-15 20:24:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanobacteriaceae.g__Methanothermobacter
## 2023-03-15 20:24:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Calditerrivibrio
## 2023-03-15 20:24:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Caldiserica.c__Caldisericia.o__Caldisericales.f__Caldisericaceae.g__Caldisericum
## 2023-03-15 20:24:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.g__Deferrisoma
## 2023-03-15 20:24:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Carnobacteriaceae.g__Allofustis
## 2023-03-15 20:24:51 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Moraxellaceae.g__Perlucidibaca
## 2023-03-15 20:24:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Thermales.f__Thermaceae.g__Meiothermus
## 2023-03-15 20:24:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.g__Candidatus_Sulcia
## 2023-03-15 20:24:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Fibrobacteres.c__Chitinispirillia.o__Chitinispirillales.f__Chitinispirillaceae.g__Chitinispirillum
## 2023-03-15 20:24:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Taylorella
## 2023-03-15 20:24:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Mycetocola
## 2023-03-15 20:24:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Acidobacteria.c__Blastocatellia.g__Pyrinomonas
## 2023-03-15 20:24:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Phycodnaviridae.g__Chlorovirus
## 2023-03-15 20:24:52 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Acidaminococcales.f__Acidaminococcaceae.g__Succinispira
## 2023-03-15 20:24:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Paludibacter
## 2023-03-15 20:24:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Varibaculum
## 2023-03-15 20:24:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfobacter
## 2023-03-15 20:24:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Veillonellales.f__Veillonellaceae.g__Veillonella
## 2023-03-15 20:24:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Methanomassiliicoccales.f__Methanomassiliicoccaceae.g__Methanomassiliicoccus
## 2023-03-15 20:24:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Mycoplasmatales.f__Mycoplasmataceae.g__Mycoplasma
## 2023-03-15 20:24:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natronolimnobius
## 2023-03-15 20:24:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylocaldum
## 2023-03-15 20:24:53 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Cryptobacterium
## 2023-03-15 20:24:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Rubritaleaceae.g__Rubritalea
## 2023-03-15 20:24:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ruegeria
## 2023-03-15 20:24:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Rhodothermaeota.c__Balneolia.o__Balneolales.f__Balneolaceae.g__Gracilimonas
## 2023-03-15 20:24:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinifilaceae.g__Marinifilum
## 2023-03-15 20:24:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Veillonellales.f__Veillonellaceae.g__Dialister
## 2023-03-15 20:24:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Demequinaceae.g__Lysinimicrobium
## 2023-03-15 20:24:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Cobetia
## 2023-03-15 20:24:54 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Achromobacter
## 2023-03-15 20:24:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Stomatobaculum
## 2023-03-15 20:24:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Chlorobaculum
## 2023-03-15 20:24:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Nitratireductor
## 2023-03-15 20:24:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Trueperella
## 2023-03-15 20:24:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Frigoribacterium
## 2023-03-15 20:24:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Entomoplasmatales.f__Entomoplasmataceae.g__Mesoplasma
## 2023-03-15 20:24:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Schlesneria
## 2023-03-15 20:24:55 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Aquitalea
## 2023-03-15 20:24:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Arenibacter
## 2023-03-15 20:24:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Shigella
## 2023-03-15 20:24:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Thermovirga
## 2023-03-15 20:24:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiales_Family_XVII._Incertae_Sedis.g__Thermaerobacter
## 2023-03-15 20:24:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Intestinibacter
## 2023-03-15 20:24:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Geminicoccus
## 2023-03-15 20:24:56 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Acidaminococcales.f__Acidaminococcaceae.g__Phascolarctobacterium
## 2023-03-15 20:24:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halosimplex
## 2023-03-15 20:24:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Pasteurella
## 2023-03-15 20:24:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiales_Family_XIII._Incertae_Sedis.g__Casaltella
## 2023-03-15 20:24:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfovibrionaceae.g__Desulfocurvus
## 2023-03-15 20:24:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Acaryochloris
## 2023-03-15 20:24:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Thiomicrospira
## 2023-03-15 20:24:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Thalassospira
## 2023-03-15 20:24:57 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Haematobacter
## 2023-03-15 20:24:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Catenulisporales.f__Catenulisporaceae.g__Catenulispora
## 2023-03-15 20:24:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Neisseria
## 2023-03-15 20:24:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Cylindrospermopsis
## 2023-03-15 20:24:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Actinotalea
## 2023-03-15 20:24:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Moorella
## 2023-03-15 20:24:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Paeniclostridium
## 2023-03-15 20:24:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Prosthecomicrobium
## 2023-03-15 20:24:58 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Opitutales.f__Opitutaceae.g__Opitutus
## 2023-03-15 20:24:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Catenuloplanes
## 2023-03-15 20:24:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Glycomycetales.f__Glycomycetaceae.g__Stackebrandtia
## 2023-03-15 20:24:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Candidatus_Endolissoclinum
## 2023-03-15 20:24:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Leuconostocaceae.g__Fructobacillus
## 2023-03-15 20:24:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Candidatus_Evansia
## 2023-03-15 20:24:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Pseudacidovorax
## 2023-03-15 20:24:59 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Pontibacter
## 2023-03-15 20:25:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Caldalkalibacillus
## 2023-03-15 20:25:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Syntrophomonadaceae.g__Syntrophomonas
## 2023-03-15 20:25:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Acidobacteria.g__Thermoanaerobaculum
## 2023-03-15 20:25:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Acidithiobacillia.o__Acidithiobacillales.f__Thermithiobacillaceae.g__Thermithiobacillus
## 2023-03-15 20:25:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Ornithinimicrobium
## 2023-03-15 20:25:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Synechocystis
## 2023-03-15 20:25:00 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Halalkalibacillus
## 2023-03-15 20:25:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Sinomonas
## 2023-03-15 20:25:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Nocardiopsaceae.g__Thermobifida
## 2023-03-15 20:25:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Caenimonas
## 2023-03-15 20:25:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Propionibacteriaceae.g__Aestuariimicrobium
## 2023-03-15 20:25:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Tyzzerella
## 2023-03-15 20:25:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Anaplasma
## 2023-03-15 20:25:01 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Roseateles
## 2023-03-15 20:25:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Saccharicrinis
## 2023-03-15 20:25:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Bibersteinia
## 2023-03-15 20:25:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Chloroflexi.c__Chloroflexia.o__Chloroflexales.f__Chloroflexaceae.g__Chloroflexus
## 2023-03-15 20:25:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Terrimonas
## 2023-03-15 20:25:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Ehrlichia
## 2023-03-15 20:25:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Oxalobacteraceae.g__Collimonas
## 2023-03-15 20:25:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Thalassobacillus
## 2023-03-15 20:25:02 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinokineospora
## 2023-03-15 20:25:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Mononegavirales.f__Paramyxoviridae.g__Rubulavirus
## 2023-03-15 20:25:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Oligella
## 2023-03-15 20:25:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Loktanella
## 2023-03-15 20:25:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Pseudoclavibacter
## 2023-03-15 20:25:03 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Desulfitibacter
## 2023-03-15 20:25:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Mycobacteriaceae.g__Amycolicicoccus
## 2023-03-15 20:25:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Marinobacterium
## 2023-03-15 20:25:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halanaerobiaceae.g__Halanaerobium
## 2023-03-15 20:25:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Lelliottia
## 2023-03-15 20:25:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Pilimelia
## 2023-03-15 20:25:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Geodermatophilales.f__Geodermatophilaceae.g__Blastococcus
## 2023-03-15 20:25:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Parvimonas
## 2023-03-15 20:25:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Streptosporangium
## 2023-03-15 20:25:04 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Planctopirus
## 2023-03-15 20:25:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Caldimonas
## 2023-03-15 20:25:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Sicinivirus
## 2023-03-15 20:25:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Retroviridae.g__Betaretrovirus
## 2023-03-15 20:25:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Polyomaviridae.g__Polyomavirus
## 2023-03-15 20:25:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Nepovirus
## 2023-03-15 20:25:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Propionicicella
## 2023-03-15 20:25:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Simonsiella
## 2023-03-15 20:25:05 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Sporomusaceae.g__Acetonema
## 2023-03-15 20:25:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Thermoanaerobacter
## 2023-03-15 20:25:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Kosmotogales.f__Kosmotogaceae.g__Kosmotoga
## 2023-03-15 20:25:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Dactylosporangium
## 2023-03-15 20:25:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prevotellaceae.g__Prevotella
## 2023-03-15 20:25:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Labrenzia
## 2023-03-15 20:25:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Filifactor
## 2023-03-15 20:25:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Anaerotruncus
## 2023-03-15 20:25:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Rahnella
## 2023-03-15 20:25:06 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Caballeronia
## 2023-03-15 20:25:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Nannocystaceae.g__Plesiocystis
## 2023-03-15 20:25:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Erythrobacteraceae.g__Porphyrobacter
## 2023-03-15 20:25:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Alysiella
## 2023-03-15 20:25:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Midichloriaceae.g__Candidatus_Midichloria
## 2023-03-15 20:25:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Klebsiella
## 2023-03-15 20:25:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Flammeovirga
## 2023-03-15 20:25:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophorhabdaceae.g__Syntrophorhabdus
## 2023-03-15 20:25:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Phycodnaviridae.g__Prymnesiovirus
## 2023-03-15 20:25:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Cytomegalovirus
## 2023-03-15 20:25:07 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Citricoccus
## 2023-03-15 20:25:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Cronobacter
## 2023-03-15 20:25:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Alicyclobacillaceae.g__Kyrpidia
## 2023-03-15 20:25:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Acidothermales.f__Acidothermaceae.g__Acidothermus
## 2023-03-15 20:25:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Planctomycetes.c__Phycisphaerae.o__Phycisphaerales.f__Phycisphaeraceae.g__Phycisphaera
## 2023-03-15 20:25:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Rhodoferax
## 2023-03-15 20:25:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptomycetales.f__Streptomycetaceae.g__Kitasatospora
## 2023-03-15 20:25:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Sulfurimonas
## 2023-03-15 20:25:08 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Frankiales.f__Cryptosporangiaceae.g__Cryptosporangium
## 2023-03-15 20:25:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Azohydromonas
## 2023-03-15 20:25:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Staphylococcaceae.g__Salinicoccus
## 2023-03-15 20:25:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Segniliparaceae.g__Segniliparus
## 2023-03-15 20:25:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Shewanellaceae.g__Shewanella
## 2023-03-15 20:25:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Aerococcaceae.g__Aerococcus
## 2023-03-15 20:25:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Pimelobacter
## 2023-03-15 20:25:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Demequinaceae.g__Demequina
## 2023-03-15 20:25:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Arsukibacterium
## 2023-03-15 20:25:09 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.f__Poxviridae.g__Orthopoxvirus
## 2023-03-15 20:25:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylotenera
## 2023-03-15 20:25:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Kofleriaceae.g__Haliangium
## 2023-03-15 20:25:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Sporosarcina
## 2023-03-15 20:25:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Tepidanaerobacter
## 2023-03-15 20:25:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Dicipivirus
## 2023-03-15 20:25:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Viruses.o__Tymovirales.f__Alphaflexiviridae.g__Potexvirus
## 2023-03-15 20:25:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Xenophilus
## 2023-03-15 20:25:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Actibacterium
## 2023-03-15 20:25:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Nafulsella
## 2023-03-15 20:25:10 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Serratia
## 2023-03-15 20:25:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Euryhalocaulis
## 2023-03-15 20:25:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Cellulomonas
## 2023-03-15 20:25:11 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Aminobacter
maaslin_putative_group_putative <- function_Maaslin2(df_ACC_filter_putative_Voom_SNM, "Putative_combined", "Temp/putative_group_putative")
## [1] "Warning: Deleting existing log file: Temp/putative_group_putative/maaslin2.log"
## 2023-03-15 20:25:12 INFO::Writing function arguments to log file
## 2023-03-15 20:25:12 INFO::Verifying options selected are valid
## 2023-03-15 20:25:12 INFO::Determining format of input files
## 2023-03-15 20:25:12 INFO::Input format is data samples as rows and metadata samples as rows
## 2023-03-15 20:25:12 INFO::Formula for random effects: expr ~ (1 | SEX) + (1 | Ethnicity_Race) + (1 | AGE) + (1 | Neoplasm_Status) + (1 | Clinical_Status_3_Mo_Post.Op) + (1 | Surgical_margin) + (1 | ATYPICAL_MITOTIC_FIGURES)
## 2023-03-15 20:25:12 INFO::Formula for fixed effects: expr ~  Putative_combined
## 2023-03-15 20:25:12 INFO::Filter data based on min abundance and min prevalence
## 2023-03-15 20:25:12 INFO::Total samples in data: 77
## 2023-03-15 20:25:12 INFO::Min samples required with min abundance for a feature not to be filtered: 0.000000
## 2023-03-15 20:25:12 INFO::Total filtered features: 5
## 2023-03-15 20:25:12 INFO::Filtered feature names from abundance and prevalence filtering: k__Viruses.f__Hytrosaviridae.g__Muscavirus, k__Viruses.f__Closteroviridae.g__Crinivirus, k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halomicrobium, k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Azovibrio, k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Psychrobacillus
## 2023-03-15 20:25:12 INFO::Total filtered features with variance filtering: 0
## 2023-03-15 20:25:12 INFO::Filtered feature names from variance filtering:
## 2023-03-15 20:25:12 INFO::Running selected normalization method: NONE
## 2023-03-15 20:25:12 INFO::Applying z-score to standardize continuous metadata
## 2023-03-15 20:25:12 INFO::Running selected transform method: NONE
## 2023-03-15 20:25:12 INFO::Running selected analysis method: LM
## 2023-03-15 20:25:12 INFO::Creating cluster of 6 R processes
## 2023-03-15 20:25:40 INFO::Counting total values for each feature
## 2023-03-15 20:25:40 WARNING::Deleting existing residuals file: Temp/putative_group_putative/residuals.rds
## 2023-03-15 20:25:40 INFO::Writing residuals to file Temp/putative_group_putative/residuals.rds
## 2023-03-15 20:25:40 WARNING::Deleting existing fitted file: Temp/putative_group_putative/fitted.rds
## 2023-03-15 20:25:40 INFO::Writing fitted values to file Temp/putative_group_putative/fitted.rds
## 2023-03-15 20:25:40 WARNING::Deleting existing ranef file: Temp/putative_group_putative/ranef.rds
## 2023-03-15 20:25:40 INFO::Writing extracted random effects to file Temp/putative_group_putative/ranef.rds
## 2023-03-15 20:25:40 INFO::Writing all results to file (ordered by increasing q-values): Temp/putative_group_putative/all_results.tsv
## 2023-03-15 20:25:40 INFO::Writing the significant results (those which are less than or equal to the threshold of 0.250000 ) to file (ordered by increasing q-values): Temp/putative_group_putative/significant_results.tsv
## 2023-03-15 20:25:40 INFO::Writing heatmap of significant results to file: Temp/putative_group_putative/heatmap.pdf
## Warning in xtfrm.data.frame(x): cannot xtfrm data frames
## [1] "There is not enough metadata in the associations to create a heatmap plot. Please review the associations in text output file."
## 2023-03-15 20:25:40 INFO::Writing association plots (one for each significant association) to output folder: Temp/putative_group_putative
## 2023-03-15 20:25:40 INFO::Plotting associations from most to least significant, grouped by metadata
## 2023-03-15 20:25:40 INFO::Plotting data for metadata number 1, Putative_combined
## 2023-03-15 20:25:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Sfi1unalikevirus
## 2023-03-15 20:25:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Poxviridae.g__Parapoxvirus
## 2023-03-15 20:25:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Bicaudaviridae.g__Bicaudavirus
## 2023-03-15 20:25:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Tymovirales.f__Betaflexiviridae.g__Trichovirus
## 2023-03-15 20:25:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Bcep22likevirus
## 2023-03-15 20:25:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Poxviridae.g__Cervidpoxvirus
## 2023-03-15 20:25:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__T5likevirus
## 2023-03-15 20:25:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Lambdalikevirus
## 2023-03-15 20:25:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Anelloviridae.g__Alphatorquevirus
## 2023-03-15 20:25:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.g__Pithovirus
## 2023-03-15 20:25:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Barnyardlikevirus
## 2023-03-15 20:25:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Closteroviridae.g__Closterovirus
## 2023-03-15 20:25:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Fuselloviridae.g__Alphafusellovirus
## 2023-03-15 20:25:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__N4likevirus
## 2023-03-15 20:25:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Retroviridae.g__Lentivirus
## 2023-03-15 20:25:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Mononegavirales.f__Nyamiviridae.g__Nyavirus
## 2023-03-15 20:25:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Andromedalikevirus
## 2023-03-15 20:25:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Closteroviridae.g__Ampelovirus
## 2023-03-15 20:25:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Papillomaviridae.g__Gammapapillomavirus
## 2023-03-15 20:25:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Sfi21dtunalikevirus
## 2023-03-15 20:25:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Virgaviridae.g__Pecluvirus
## 2023-03-15 20:25:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Skunalikevirus
## 2023-03-15 20:25:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Cp220likevirus
## 2023-03-15 20:25:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Phikzlikevirus
## 2023-03-15 20:25:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Orthomyxoviridae.g__Influenzavirus_C
## 2023-03-15 20:25:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phi29likevirus
## 2023-03-15 20:25:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Caulimoviridae.g__Cavemovirus
## 2023-03-15 20:25:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Anelloviridae.g__Betatorquevirus
## 2023-03-15 20:25:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Caulimoviridae.g__Caulimovirus
## 2023-03-15 20:25:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Parvoviridae.g__Protoparvovirus
## 2023-03-15 20:25:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Bromoviridae.g__Alfamovirus
## 2023-03-15 20:25:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Sp6likevirus
## 2023-03-15 20:25:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Hepadnaviridae.g__Orthohepadnavirus
## 2023-03-15 20:25:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Tymovirales.f__Alphaflexiviridae.g__Allexivirus
## 2023-03-15 20:25:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Parvoviridae.g__Ambidensovirus
## 2023-03-15 20:25:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Comovirus
## 2023-03-15 20:25:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Bromoviridae.g__Ilarvirus
## 2023-03-15 20:25:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Narnaviridae.g__Narnavirus
## 2023-03-15 20:25:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Totiviridae.g__Totivirus
## 2023-03-15 20:25:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Potyviridae.g__Tritimovirus
## 2023-03-15 20:25:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Papillomaviridae.g__Dyopipapillomavirus
## 2023-03-15 20:25:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Siccibacter
## 2023-03-15 20:25:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Neosynechococcus
## 2023-03-15 20:25:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Dolichospermum
## 2023-03-15 20:25:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Altibacter
## 2023-03-15 20:25:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Methanomassiliicoccales.f__Methanomassiliicoccaceae.g__Candidatus_Methanomethylophilus
## 2023-03-15 20:25:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Nitritalea
## 2023-03-15 20:25:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Mangrovibacter
## 2023-03-15 20:25:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Thalassotalea
## 2023-03-15 20:25:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Pseudoramibacter
## 2023-03-15 20:25:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natronobacterium
## 2023-03-15 20:25:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfospira
## 2023-03-15 20:25:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Arenitalea
## 2023-03-15 20:25:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Thermoactinomycetaceae.g__Shimazuella
## 2023-03-15 20:25:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Gaetbulibacter
## 2023-03-15 20:25:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Basilea
## 2023-03-15 20:25:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Alicyclobacillaceae.g__Effusibacillus
## 2023-03-15 20:25:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitinibacter
## 2023-03-15 20:25:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanolacinia
## 2023-03-15 20:25:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanococci.o__Methanococcales.f__Methanocaldococcaceae.g__Methanotorris
## 2023-03-15 20:25:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Myxosarcina
## 2023-03-15 20:25:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Gayadomonas
## 2023-03-15 20:25:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Jeotgalibacillus
## 2023-03-15 20:25:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Zymobacter
## 2023-03-15 20:25:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Paeniglutamicibacter
## 2023-03-15 20:25:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halobellus
## 2023-03-15 20:25:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Flaviramulus
## 2023-03-15 20:25:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Cyclobacterium
## 2023-03-15 20:25:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Sideroxydans
## 2023-03-15 20:25:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Sediminibacillus
## 2023-03-15 20:25:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Saccharospirillum
## 2023-03-15 20:25:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Robiginitalea
## 2023-03-15 20:25:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Caldimicrobium
## 2023-03-15 20:25:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Actinopolymorpha
## 2023-03-15 20:25:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Candidatus_Phaeomarinobacter
## 2023-03-15 20:25:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Candidatus_Koribacter
## 2023-03-15 20:25:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermabacteraceae.g__Helcobacillus
## 2023-03-15 20:25:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Centipeda
## 2023-03-15 20:25:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Nocardiopsaceae.g__Allosalinactinospora
## 2023-03-15 20:25:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ponticoccus
## 2023-03-15 20:25:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halogranum
## 2023-03-15 20:25:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Nautilia
## 2023-03-15 20:25:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Obesumbacterium
## 2023-03-15 20:25:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Desulfurobacteriales.f__Desulfurobacteriaceae.g__Thermovibrio
## 2023-03-15 20:25:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Aliiroseovarius
## 2023-03-15 20:25:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halobacterium
## 2023-03-15 20:25:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.g__Thermosulfidibacter
## 2023-03-15 20:25:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Stigonematales.g__Mastigocladopsis
## 2023-03-15 20:25:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Thaumarchaeota.o__Nitrosopumilales.f__Nitrosopumilaceae.g__Candidatus_Nitrosoarchaeum
## 2023-03-15 20:25:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Mesoaciditogales.f__Mesoaciditogaceae.g__Mesoaciditoga
## 2023-03-15 20:25:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Wolinella
## 2023-03-15 20:25:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Thaumarchaeota.o__Nitrosopumilales.f__Nitrosopumilaceae.g__Nitrosopumilus
## 2023-03-15 20:25:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Marinococcus
## 2023-03-15 20:25:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfobacula
## 2023-03-15 20:25:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanoculleus
## 2023-03-15 20:25:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Spongiibacteraceae.g__Dasania
## 2023-03-15 20:25:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Thermincola
## 2023-03-15 20:25:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Shuttleworthia
## 2023-03-15 20:25:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylovorus
## 2023-03-15 20:25:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thalassobium
## 2023-03-15 20:25:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.o__Thermomicrobiales.f__Thermomicrobiaceae.g__Thermomicrobium
## 2023-03-15 20:25:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Thermocrinis
## 2023-03-15 20:25:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanomicrobiaceae.g__Methanofollis
## 2023-03-15 20:25:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Mesonia
## 2023-03-15 20:25:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Basfia
## 2023-03-15 20:25:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Candidatus_Atelocyanobacterium
## 2023-03-15 20:25:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Allobaculum
## 2023-03-15 20:25:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Coriobacterium
## 2023-03-15 20:25:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Amphritea
## 2023-03-15 20:25:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Flagellimonas
## 2023-03-15 20:25:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Solitalea
## 2023-03-15 20:25:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Thermoplasmatales.f__Ferroplasmaceae.g__Ferroplasma
## 2023-03-15 20:25:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Thermoproteales.f__Thermoproteaceae.g__Vulcanisaeta
## 2023-03-15 20:25:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Bermanella
## 2023-03-15 20:25:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Afifella
## 2023-03-15 20:25:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Rummeliibacillus
## 2023-03-15 20:25:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfurivibrio
## 2023-03-15 20:25:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Salinibacillus
## 2023-03-15 20:25:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Pseudobutyrivibrio
## 2023-03-15 20:25:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Kosmotogales.f__Kosmotogaceae.g__Mesotoga
## 2023-03-15 20:25:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Paracaedibacteraceae.g__Candidatus_Odyssella
## 2023-03-15 20:25:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Holdemania
## 2023-03-15 20:25:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Dielma
## 2023-03-15 20:25:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Leminorella
## 2023-03-15 20:25:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Terribacillus
## 2023-03-15 20:25:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseibacterium
## 2023-03-15 20:25:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Lacimicrobium
## 2023-03-15 20:25:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Ardenticatenia.o__Ardenticatenales.f__Ardenticatenaceae.g__Ardenticatena
## 2023-03-15 20:25:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Halostagnicola
## 2023-03-15 20:25:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Adlercreutzia
## 2023-03-15 20:25:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Candidatus_Photodesmus
## 2023-03-15 20:25:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfonatronospira
## 2023-03-15 20:25:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Nereida
## 2023-03-15 20:25:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Paucisalibacillus
## 2023-03-15 20:25:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Cloacibacillus
## 2023-03-15 20:25:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Thaumarchaeota.g__Candidatus_Nitrosotenuis
## 2023-03-15 20:25:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Deefgea
## 2023-03-15 20:25:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Subdoligranulum
## 2023-03-15 20:25:58 INFO::Creating boxplot for categorical data, Putative_combined vs contaminant1Harvard
## 2023-03-15 20:25:59 INFO::Creating boxplot for categorical data, Putative_combined vs contaminant2HarvardCanadaBaylorWashU
## 2023-03-15 20:25:59 INFO::Creating boxplot for categorical data, Putative_combined vs contaminant3AllSeqCenters
## 2023-03-15 20:25:59 INFO::Creating boxplot for categorical data, Putative_combined vs contaminant4RandomSpikesHarvard
## 2023-03-15 20:25:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Natronomonas
## 2023-03-15 20:25:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Halolactibacillus
## 2023-03-15 20:25:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Papillomaviridae.g__Betapapillomavirus
## 2023-03-15 20:25:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Sellimonas
## 2023-03-15 20:25:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanoregulaceae.g__Methanolinea
## 2023-03-15 20:26:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Halopiger
## 2023-03-15 20:26:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.g__Hoyosella
## 2023-03-15 20:26:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanomicrobiales.f__Methanoregulaceae.g__Methanosphaerula
## 2023-03-15 20:26:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Podoviridae.g__Phikmvlikevirus
## 2023-03-15 20:26:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Thalassomonas
## 2023-03-15 20:26:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Haloarcula
## 2023-03-15 20:26:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Gramella
## 2023-03-15 20:26:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Pyrococcus
## 2023-03-15 20:26:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Aromatoleum
## 2023-03-15 20:26:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__L5likevirus
## 2023-03-15 20:26:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Natronorubrum
## 2023-03-15 20:26:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Thioalkalimicrobium
## 2023-03-15 20:26:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Arhodomonas
## 2023-03-15 20:26:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Prosthecochloris
## 2023-03-15 20:26:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Catenovulum
## 2023-03-15 20:26:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Puniceibacterium
## 2023-03-15 20:26:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Herpesvirales.f__Malacoherpesviridae.g__Ostreavirus
## 2023-03-15 20:26:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.g__Bacilladnavirus
## 2023-03-15 20:26:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Candidatus_Methylopumilus
## 2023-03-15 20:26:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Nisaea
## 2023-03-15 20:26:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Coprobacter
## 2023-03-15 20:26:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Aliihoeflea
## 2023-03-15 20:26:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prolixibacteraceae.g__Prolixibacter
## 2023-03-15 20:26:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.g__Thermobaculum
## 2023-03-15 20:26:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Rudanella
## 2023-03-15 20:26:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Cryomorphaceae.g__Owenweeksia
## 2023-03-15 20:26:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Youngiibacter
## 2023-03-15 20:26:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Agarivorans
## 2023-03-15 20:26:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Pyrodictiaceae.g__Pyrodictium
## 2023-03-15 20:26:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Deferribacter
## 2023-03-15 20:26:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiocystis
## 2023-03-15 20:26:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Rubidibacter
## 2023-03-15 20:26:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylothermaceae.g__Methylohalobius
## 2023-03-15 20:26:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Nocardiopsaceae.g__Streptomonospora
## 2023-03-15 20:26:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.o__Haloplasmatales.f__Haloplasmataceae.g__Haloplasma
## 2023-03-15 20:26:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Yokenella
## 2023-03-15 20:26:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.c__Spartobacteria.g__Candidatus_Xiphinematobacter
## 2023-03-15 20:26:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Legionellaceae.g__Tatlockia
## 2023-03-15 20:26:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Alkalilimnicola
## 2023-03-15 20:26:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Propionispira
## 2023-03-15 20:26:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Xylanimonas
## 2023-03-15 20:26:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophaceae.g__Syntrophus
## 2023-03-15 20:26:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Salimicrobium
## 2023-03-15 20:26:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Aliiglaciecola
## 2023-03-15 20:26:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__I3likevirus
## 2023-03-15 20:26:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.g__Aciduliprofundum
## 2023-03-15 20:26:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Leeia
## 2023-03-15 20:26:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Renibacterium
## 2023-03-15 20:26:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Dactylococcopsis
## 2023-03-15 20:26:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Mimiviridae.g__Mimivirus
## 2023-03-15 20:26:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Maritalea
## 2023-03-15 20:26:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Balneatrix
## 2023-03-15 20:26:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Stanieria
## 2023-03-15 20:26:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Reinekea
## 2023-03-15 20:26:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Helicobacteraceae.g__Sulfuricurvum
## 2023-03-15 20:26:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Ignavibacteriae.c__Ignavibacteria.o__Ignavibacteriales.f__Melioribacteraceae.g__Melioribacter
## 2023-03-15 20:26:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Gallionella
## 2023-03-15 20:26:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Lentzea
## 2023-03-15 20:26:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Thalassolituus
## 2023-03-15 20:26:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Tolumonas
## 2023-03-15 20:26:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Moranella
## 2023-03-15 20:26:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Marinagarivorans
## 2023-03-15 20:26:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomarinum
## 2023-03-15 20:26:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Thermotogaceae.g__Pseudothermotoga
## 2023-03-15 20:26:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Rhodothermaeota.c__Balneolia.o__Balneolales.f__Balneolaceae.g__Balneola
## 2023-03-15 20:26:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halarchaeum
## 2023-03-15 20:26:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halalkalicoccus
## 2023-03-15 20:26:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Pelodictyon
## 2023-03-15 20:26:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Chloroflexia.o__Chloroflexales.f__Oscillochloridaceae.g__Oscillochloris
## 2023-03-15 20:26:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Litoreibacter
## 2023-03-15 20:26:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Microvirgula
## 2023-03-15 20:26:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Myxococcaceae.g__Corallococcus
## 2023-03-15 20:26:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.f__Competibacteraceae.g__Candidatus_Competibacter
## 2023-03-15 20:26:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Citreicella
## 2023-03-15 20:26:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatirhabdium
## 2023-03-15 20:26:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Poxviridae.g__Yatapoxvirus
## 2023-03-15 20:26:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermodesulfobiaceae.g__Thermodesulfobium
## 2023-03-15 20:26:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Lampropedia
## 2023-03-15 20:26:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Halotalea
## 2023-03-15 20:26:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Blastopirellula
## 2023-03-15 20:26:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Leeuwenhoekiella
## 2023-03-15 20:26:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatiglans
## 2023-03-15 20:26:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Lymphocryptovirus
## 2023-03-15 20:26:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Marinimicrobium
## 2023-03-15 20:26:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Saccharospirillaceae.g__Gynuella
## 2023-03-15 20:26:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Geovibrio
## 2023-03-15 20:26:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Thaumarchaeota.c__Nitrososphaeria.o__Nitrososphaerales.f__Nitrososphaeraceae.g__Nitrososphaera
## 2023-03-15 20:26:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Salinivibrio
## 2023-03-15 20:26:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Sedimenticola
## 2023-03-15 20:26:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Eggerthia
## 2023-03-15 20:26:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Holdemanella
## 2023-03-15 20:26:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Flexilinea
## 2023-03-15 20:26:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_IV._Incertae_Sedis.g__Mahella
## 2023-03-15 20:26:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.g__Tenuivirus
## 2023-03-15 20:26:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Herbiconiux
## 2023-03-15 20:26:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Chelonobacter
## 2023-03-15 20:26:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Cyanobacterium
## 2023-03-15 20:26:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Parvularculales.f__Parvularculaceae.g__Parvularcula
## 2023-03-15 20:26:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.g__Methyloceanibacter
## 2023-03-15 20:26:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Gottschalkia
## 2023-03-15 20:26:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Aurantimonadaceae.g__Fulvimarina
## 2023-03-15 20:26:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Anaerophaga
## 2023-03-15 20:26:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Actinotignum
## 2023-03-15 20:26:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Thermoactinomycetaceae.g__Thermoactinomyces
## 2023-03-15 20:26:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Sphingorhabdus
## 2023-03-15 20:26:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Cryobacterium
## 2023-03-15 20:26:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Crocinitomicaceae.g__Crocinitomix
## 2023-03-15 20:26:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Aerococcaceae.g__Eremococcus
## 2023-03-15 20:26:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Poxviridae.g__Alphaentomopoxvirus
## 2023-03-15 20:26:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Pseudaminobacter
## 2023-03-15 20:26:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Bromoviridae.g__Cucumovirus
## 2023-03-15 20:26:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Fusobacteriaceae.g__Cetobacterium
## 2023-03-15 20:26:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Ammonifex
## 2023-03-15 20:26:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Legionellales.f__Legionellaceae.g__Fluoribacter
## 2023-03-15 20:26:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Thermomonosporaceae.g__Thermomonospora
## 2023-03-15 20:26:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Marinospirillum
## 2023-03-15 20:26:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halanaeroarchaeum
## 2023-03-15 20:26:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ketogulonicigenium
## 2023-03-15 20:26:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Hepeviridae.g__Piscihepevirus
## 2023-03-15 20:26:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Jejuia
## 2023-03-15 20:26:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Campylobacteraceae.g__Sulfurospirillum
## 2023-03-15 20:26:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Candidatus_Ruthia
## 2023-03-15 20:26:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Chroococcidiopsis
## 2023-03-15 20:26:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Wohlfahrtiimonas
## 2023-03-15 20:26:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Ignavibacteriae.c__Ignavibacteria.o__Ignavibacteriales.f__Ignavibacteriaceae.g__Ignavibacterium
## 2023-03-15 20:26:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Kandleria
## 2023-03-15 20:26:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinosynnema
## 2023-03-15 20:26:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Ignatzschineria
## 2023-03-15 20:26:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Rikenellaceae.g__Rikenella
## 2023-03-15 20:26:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Thioploca
## 2023-03-15 20:26:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Joostella
## 2023-03-15 20:26:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Leadbetterella
## 2023-03-15 20:26:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Shimwellia
## 2023-03-15 20:26:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Franconibacter
## 2023-03-15 20:26:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Pyramidobacter
## 2023-03-15 20:26:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Phaeodactylibacter
## 2023-03-15 20:26:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Brenneria
## 2023-03-15 20:26:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Hellea
## 2023-03-15 20:26:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Bdellovibrionales.f__Halobacteriovoraceae.g__Halobacteriovorax
## 2023-03-15 20:26:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylococcus
## 2023-03-15 20:26:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Elusimicrobia.c__Elusimicrobia.o__Elusimicrobiales.f__Elusimicrobiaceae.g__Elusimicrobium
## 2023-03-15 20:26:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Azonexus
## 2023-03-15 20:26:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfocapsa
## 2023-03-15 20:26:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Acaricomes
## 2023-03-15 20:26:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Spongiibacteraceae.g__Spongiibacter
## 2023-03-15 20:26:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Hydrogenobacter
## 2023-03-15 20:26:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Thermanaerothrix
## 2023-03-15 20:26:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Arenaviridae.g__Arenavirus
## 2023-03-15 20:26:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfonatronovibrio
## 2023-03-15 20:26:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sedimentitalea
## 2023-03-15 20:26:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Amphibacillus
## 2023-03-15 20:26:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.o__Bacteroidetes_Order_II._Incertae_sedis.f__Rhodothermaceae.g__Salisaeta
## 2023-03-15 20:26:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pragia
## 2023-03-15 20:26:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Pleurocapsa
## 2023-03-15 20:26:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.g__Nitratifractor
## 2023-03-15 20:26:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Marinilabilia
## 2023-03-15 20:26:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Oxalobacteraceae.g__Pseudoduganella
## 2023-03-15 20:26:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Thermosynechococcus
## 2023-03-15 20:26:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Candidatus_Neoehrlichia
## 2023-03-15 20:26:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Archaeoglobi.o__Archaeoglobales.f__Archaeoglobaceae.g__Geoglobus
## 2023-03-15 20:26:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Anelloviridae.g__Gammatorquevirus
## 2023-03-15 20:26:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Chloroherpeton
## 2023-03-15 20:26:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudooceanicola
## 2023-03-15 20:26:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Dethiosulfovibrio
## 2023-03-15 20:26:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Aeribacillus
## 2023-03-15 20:26:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Cryocola
## 2023-03-15 20:26:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Bifidobacteriales.f__Bifidobacteriaceae.g__Parascardovia
## 2023-03-15 20:26:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.g__Candidatus_Babela
## 2023-03-15 20:26:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Mimiviridae.g__Cafeteriavirus
## 2023-03-15 20:26:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Lentibacillus
## 2023-03-15 20:26:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Riesia
## 2023-03-15 20:26:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Spirochaetaceae.g__Salinispira
## 2023-03-15 20:26:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Bunyaviridae.g__Orthobunyavirus
## 2023-03-15 20:26:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Longilinea
## 2023-03-15 20:26:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Kerstersia
## 2023-03-15 20:26:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudodonghicola
## 2023-03-15 20:26:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.o__Bacteroidetes_Order_II._Incertae_sedis.f__Rhodothermaceae.g__Salinibacter
## 2023-03-15 20:26:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Starkeya
## 2023-03-15 20:26:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Paraoerskovia
## 2023-03-15 20:26:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.g__Nitratiruptor
## 2023-03-15 20:26:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Aestuariivita
## 2023-03-15 20:26:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zunongwangia
## 2023-03-15 20:26:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Thermopetrobacter
## 2023-03-15 20:26:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Fibrobacteres.c__Chitinispirillia.o__Chitinispirillales.f__Chitinispirillaceae.g__Chitinispirillum
## 2023-03-15 20:26:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Allochromatium
## 2023-03-15 20:26:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Nitrincola
## 2023-03-15 20:26:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oleiphilaceae.g__Oleiphilus
## 2023-03-15 20:26:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thalassobius
## 2023-03-15 20:26:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Enterovirus
## 2023-03-15 20:26:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Aquamicrobium
## 2023-03-15 20:26:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Silanimonas
## 2023-03-15 20:26:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Gallaecimonas
## 2023-03-15 20:26:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Isosphaeraceae.g__Isosphaera
## 2023-03-15 20:26:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Derxia
## 2023-03-15 20:26:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylovulum
## 2023-03-15 20:26:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Gluconacetobacter
## 2023-03-15 20:26:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Richelia
## 2023-03-15 20:26:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Acidobacterium
## 2023-03-15 20:26:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Thiolapillus
## 2023-03-15 20:26:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Sediminibacter
## 2023-03-15 20:26:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Siphoviridae.g__Tunalikevirus
## 2023-03-15 20:26:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Caliciviridae.g__Vesivirus
## 2023-03-15 20:26:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Octadecabacter
## 2023-03-15 20:26:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Paramesorhizobium
## 2023-03-15 20:26:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Levilinea
## 2023-03-15 20:26:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Mariniradius
## 2023-03-15 20:26:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prevotellaceae.g__Hallella
## 2023-03-15 20:26:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Oceaniovalibus
## 2023-03-15 20:26:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Sporomusaceae.g__Pelosinus
## 2023-03-15 20:26:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Oxobacter
## 2023-03-15 20:26:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Lunatimonas
## 2023-03-15 20:26:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Coprococcus
## 2023-03-15 20:26:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Yonghaparkia
## 2023-03-15 20:26:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Thermodesulfatator
## 2023-03-15 20:26:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Salipiger
## 2023-03-15 20:26:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Desulfuromonadaceae.g__Desulfuromonas
## 2023-03-15 20:26:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Opitutales.f__Opitutaceae.g__Cephaloticoccus
## 2023-03-15 20:26:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Leptolinea
## 2023-03-15 20:26:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Rhodovibrio
## 2023-03-15 20:26:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Palaeococcus
## 2023-03-15 20:26:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pseudorhodobacter
## 2023-03-15 20:26:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Aquamavirus
## 2023-03-15 20:26:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Crenobacter
## 2023-03-15 20:26:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Galbibacter
## 2023-03-15 20:26:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Wolbachia
## 2023-03-15 20:26:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Cellvibrionaceae.g__Simiduia
## 2023-03-15 20:26:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.g__Kallipyga
## 2023-03-15 20:26:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Mucispirillum
## 2023-03-15 20:26:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.f__Leptospiraceae.g__Leptonema
## 2023-03-15 20:26:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Marvinbryantia
## 2023-03-15 20:26:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Capnocytophaga
## 2023-03-15 20:26:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Proteiniclasticum
## 2023-03-15 20:26:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Geobacteraceae.g__Geopsychrobacter
## 2023-03-15 20:26:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Christensenellaceae.g__Christensenella
## 2023-03-15 20:26:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Eudoraea
## 2023-03-15 20:26:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Kushneria
## 2023-03-15 20:26:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Spiribacter
## 2023-03-15 20:26:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Microchaetaceae.g__Microchaete
## 2023-03-15 20:26:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Hydrogenophilales.f__Hydrogenophilaceae.g__Thiobacillus
## 2023-03-15 20:26:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Lebetimonas
## 2023-03-15 20:26:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Microterricola
## 2023-03-15 20:26:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Halobacteroides
## 2023-03-15 20:26:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Anaerostipes
## 2023-03-15 20:26:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cardiobacteriales.f__Cardiobacteriaceae.g__Cardiobacterium
## 2023-03-15 20:26:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Frateuria
## 2023-03-15 20:26:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Ponticaulis
## 2023-03-15 20:26:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Beggiatoa
## 2023-03-15 20:26:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Carnobacteriaceae.g__Alloiococcus
## 2023-03-15 20:26:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Siansivirga
## 2023-03-15 20:26:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitiniphilus
## 2023-03-15 20:26:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Virgibacillus
## 2023-03-15 20:26:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Dehalococcoidia.g__Dehalogenimonas
## 2023-03-15 20:26:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Denitrobacterium
## 2023-03-15 20:26:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Asaia
## 2023-03-15 20:26:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Candidatus_Accumulibacter
## 2023-03-15 20:26:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Caulobacterales.f__Caulobacteraceae.g__Woodsholea
## 2023-03-15 20:26:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Synergistes
## 2023-03-15 20:26:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Granulibacter
## 2023-03-15 20:26:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Kribbella
## 2023-03-15 20:26:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Austwickia
## 2023-03-15 20:26:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Acidocella
## 2023-03-15 20:26:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Rouxiella
## 2023-03-15 20:26:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Mitsuaria
## 2023-03-15 20:26:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfarculales.f__Desulfarculaceae.g__Desulfarculus
## 2023-03-15 20:26:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Aminomonas
## 2023-03-15 20:26:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Halonatronum
## 2023-03-15 20:26:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Cucumibacter
## 2023-03-15 20:26:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Proteus
## 2023-03-15 20:26:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.g__Phocaeicola
## 2023-03-15 20:26:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Desulfurispora
## 2023-03-15 20:26:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Tistrella
## 2023-03-15 20:26:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Thermococci.o__Thermococcales.f__Thermococcaceae.g__Thermococcus
## 2023-03-15 20:26:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfohalobiaceae.g__Desulfohalobium
## 2023-03-15 20:26:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Rhodospirillum
## 2023-03-15 20:26:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Maritimibacter
## 2023-03-15 20:26:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Leucothrix
## 2023-03-15 20:26:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Thermoplasmatales.f__Picrophilaceae.g__Picrophilus
## 2023-03-15 20:26:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Yaniella
## 2023-03-15 20:26:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Mannheimia
## 2023-03-15 20:26:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanobacteriaceae.g__Methanosphaera
## 2023-03-15 20:26:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Vibrionales.f__Vibrionaceae.g__Vibrio
## 2023-03-15 20:26:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinopolysporales.f__Actinopolysporaceae.g__Actinopolyspora
## 2023-03-15 20:26:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Thaumarchaeota.g__Candidatus_Nitrosopelagicus
## 2023-03-15 20:26:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Asanoa
## 2023-03-15 20:26:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bradyrhizobiaceae.g__Oligotropha
## 2023-03-15 20:26:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Amoebophilaceae.g__Candidatus_Amoebophilus
## 2023-03-15 20:26:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halanaerobiaceae.g__Halothermothrix
## 2023-03-15 20:26:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Terasakiella
## 2023-03-15 20:26:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.c__Spartobacteria.g__Terrimicrobium
## 2023-03-15 20:26:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Verrucosispora
## 2023-03-15 20:26:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Chitinimonas
## 2023-03-15 20:26:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thalassobacter
## 2023-03-15 20:26:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sediminimonas
## 2023-03-15 20:26:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Enterorhabdus
## 2023-03-15 20:26:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Alphacoronavirus
## 2023-03-15 20:26:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Poxviridae.g__Leporipoxvirus
## 2023-03-15 20:26:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Arcticibacter
## 2023-03-15 20:26:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Salegentibacter
## 2023-03-15 20:26:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Thermales.f__Thermaceae.g__Oceanithermus
## 2023-03-15 20:26:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Salinimicrobium
## 2023-03-15 20:26:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Andreprevotia
## 2023-03-15 20:26:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Vitreoscilla
## 2023-03-15 20:26:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Alteromonadaceae.g__Aliagarivorans
## 2023-03-15 20:26:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Longispora
## 2023-03-15 20:26:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Ishikawaella
## 2023-03-15 20:26:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Luteibacter
## 2023-03-15 20:26:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Fabavirus
## 2023-03-15 20:26:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Sediminicola
## 2023-03-15 20:26:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Betacoronavirus
## 2023-03-15 20:26:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Wenxinia
## 2023-03-15 20:26:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_III._Incertae_Sedis.g__Thermosediminibacter
## 2023-03-15 20:26:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Oceanospirillum
## 2023-03-15 20:26:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Melissococcus
## 2023-03-15 20:26:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Stappia
## 2023-03-15 20:26:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Bdellovibrionales.f__Bacteriovoracaceae.g__Bacteriovorax
## 2023-03-15 20:26:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Hahellaceae.g__Hahella
## 2023-03-15 20:26:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Pelistega
## 2023-03-15 20:26:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sagittula
## 2023-03-15 20:26:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Bradyrhizobiaceae.g__Tardiphaga
## 2023-03-15 20:26:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Rahnella
## 2023-03-15 20:26:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylobacillus
## 2023-03-15 20:26:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Hydrogenovibrio
## 2023-03-15 20:26:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Nautiliales.f__Nautiliaceae.g__Caminibacter
## 2023-03-15 20:26:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Hahellaceae.g__Zooshikella
## 2023-03-15 20:26:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Anaerobacillus
## 2023-03-15 20:26:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Halieaceae.g__Congregibacter
## 2023-03-15 20:26:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Flexistipes
## 2023-03-15 20:26:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Simkaniaceae.g__Simkania
## 2023-03-15 20:26:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Fibrobacteres.c__Fibrobacteria.o__Fibrobacterales.f__Fibrobacteraceae.g__Fibrobacter
## 2023-03-15 20:26:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Baculoviridae.g__Deltabaculovirus
## 2023-03-15 20:26:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Chania
## 2023-03-15 20:26:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Ewingella
## 2023-03-15 20:26:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Hylemonella
## 2023-03-15 20:26:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Rhodoluna
## 2023-03-15 20:26:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Crocinitomicaceae.g__Fluviicola
## 2023-03-15 20:26:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Lactobacillaceae.g__Sharpea
## 2023-03-15 20:26:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Chelativorans
## 2023-03-15 20:26:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Terracoccus
## 2023-03-15 20:26:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zhouia
## 2023-03-15 20:26:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Limnochordia.o__Limnochordales.f__Limnochordaceae.g__Limnochorda
## 2023-03-15 20:26:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Steroidobacter
## 2023-03-15 20:26:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Phaeospirillum
## 2023-03-15 20:26:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Catelliglobosispora
## 2023-03-15 20:26:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Croceibacter
## 2023-03-15 20:26:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Kordiimonadales.f__Kordiimonadaceae.g__Kordiimonas
## 2023-03-15 20:26:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Terrabacter
## 2023-03-15 20:26:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Stigonematales.g__Hapalosiphon
## 2023-03-15 20:26:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Celeribacter
## 2023-03-15 20:26:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Desulfurococcaceae.g__Ignicoccus
## 2023-03-15 20:26:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.g__Thermorudis
## 2023-03-15 20:26:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Senegalimassilia
## 2023-03-15 20:26:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Rubritepida
## 2023-03-15 20:26:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Tachikawaea
## 2023-03-15 20:26:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.g__Pseudohongiella
## 2023-03-15 20:26:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Fusobacteriaceae.g__Ilyobacter
## 2023-03-15 20:26:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Spounalikevirus
## 2023-03-15 20:26:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Thermanaerovibrio
## 2023-03-15 20:26:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Anaerovibrio
## 2023-03-15 20:26:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Aeromonadaceae.g__Aeromonas
## 2023-03-15 20:26:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Hafnia
## 2023-03-15 20:26:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptococcaceae.g__Candidatus_Desulforudis
## 2023-03-15 20:26:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Hydrogenothermaceae.g__Persephonella
## 2023-03-15 20:26:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Castellaniella
## 2023-03-15 20:26:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfarculales.f__Desulfarculaceae.g__Dethiosulfatarculus
## 2023-03-15 20:26:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Nitrosococcus
## 2023-03-15 20:26:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.g__Higrevirus
## 2023-03-15 20:26:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Flavisolibacter
## 2023-03-15 20:26:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Thermomonosporaceae.g__Spirillospora
## 2023-03-15 20:26:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Glycomycetales.f__Glycomycetaceae.g__Haloglycomyces
## 2023-03-15 20:26:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Taylorella
## 2023-03-15 20:26:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Leptotrichiaceae.g__Streptobacillus
## 2023-03-15 20:26:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Dongia
## 2023-03-15 20:26:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Planktomarina
## 2023-03-15 20:26:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chrysiogenetes.c__Chrysiogenetes.o__Chrysiogenales.f__Chrysiogenaceae.g__Chrysiogenes
## 2023-03-15 20:26:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Granulicella
## 2023-03-15 20:26:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfatitalea
## 2023-03-15 20:26:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Kozakia
## 2023-03-15 20:26:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Thalassobaculum
## 2023-03-15 20:26:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Kineosporiales.f__Kineosporiaceae.g__Kineosporia
## 2023-03-15 20:26:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Peptostreptococcus
## 2023-03-15 20:26:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Hymenobacter
## 2023-03-15 20:26:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Anaerofustis
## 2023-03-15 20:26:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Parvibaculum
## 2023-03-15 20:26:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Marinobacterium
## 2023-03-15 20:26:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Blastomonas
## 2023-03-15 20:26:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Fulvivirga
## 2023-03-15 20:26:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.g__Candidatus_Hepatobacter
## 2023-03-15 20:26:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Dinoroseobacter
## 2023-03-15 20:26:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chrysiogenetes.c__Chrysiogenetes.o__Chrysiogenales.f__Chrysiogenaceae.g__Desulfurispirillum
## 2023-03-15 20:26:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Acidobacteria.c__Acidobacteriia.o__Acidobacteriales.f__Acidobacteriaceae.g__Silvibacterium
## 2023-03-15 20:26:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Sporolactobacillaceae.g__Tuberibacillus
## 2023-03-15 20:26:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Oceanicaulis
## 2023-03-15 20:26:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Pseudolabrys
## 2023-03-15 20:26:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Paenirhodobacter
## 2023-03-15 20:26:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.g__Timonella
## 2023-03-15 20:26:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Kibdelosporangium
## 2023-03-15 20:26:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Oceanospirillaceae.g__Neptunomonas
## 2023-03-15 20:26:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Acidobacteria.c__Solibacteres.o__Solibacterales.g__Bryobacter
## 2023-03-15 20:26:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Alteromonadales.f__Colwelliaceae.g__Colwellia
## 2023-03-15 20:26:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Gemmobacter
## 2023-03-15 20:26:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Halieaceae.g__Luminiphilus
## 2023-03-15 20:26:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Puniceicoccales.f__Puniceicoccaceae.g__Coraliomargarita
## 2023-03-15 20:26:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Adhaeribacter
## 2023-03-15 20:26:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Diaphorobacter
## 2023-03-15 20:26:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Oerskovia
## 2023-03-15 20:26:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Ornatilinea
## 2023-03-15 20:26:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobiaceae.g__Haloferula
## 2023-03-15 20:26:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Oribacterium
## 2023-03-15 20:26:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Adenoviridae.g__Mastadenovirus
## 2023-03-15 20:26:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Nonlabens
## 2023-03-15 20:26:55 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Halorhodospira
## 2023-03-15 20:26:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Rubrivivax
## 2023-03-15 20:26:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Isosphaeraceae.g__Singulisphaera
## 2023-03-15 20:26:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Sandarakinorhabdus
## 2023-03-15 20:26:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Polydnaviridae.g__Ichnovirus
## 2023-03-15 20:26:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Iridoviridae.g__Ranavirus
## 2023-03-15 20:26:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Faecalibaculum
## 2023-03-15 20:26:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Nostoc
## 2023-03-15 20:26:56 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Aminobacterium
## 2023-03-15 20:26:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ahrensia
## 2023-03-15 20:26:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanomicrobia.o__Methanosarcinales.f__Methermicoccaceae.g__Methermicoccus
## 2023-03-15 20:26:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Oceanibaculum
## 2023-03-15 20:26:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermabacteraceae.g__Dermabacter
## 2023-03-15 20:26:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Isoptericola
## 2023-03-15 20:26:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Sciscionella
## 2023-03-15 20:26:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Carboxydothermus
## 2023-03-15 20:26:57 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Microthrixaceae.g__Candidatus_Microthrix
## 2023-03-15 20:26:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Methyloferula
## 2023-03-15 20:26:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Ectothiorhodospira
## 2023-03-15 20:26:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Agreia
## 2023-03-15 20:26:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Niabella
## 2023-03-15 20:26:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Henriciella
## 2023-03-15 20:26:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Cesiribacter
## 2023-03-15 20:26:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.g__Lawsonella
## 2023-03-15 20:26:58 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Kluyvera
## 2023-03-15 20:26:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomonas
## 2023-03-15 20:26:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Magnetococcales.f__Magnetococcaceae.g__Magnetococcus
## 2023-03-15 20:26:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Oleiagrimonas
## 2023-03-15 20:26:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Virgaviridae.g__Pomovirus
## 2023-03-15 20:26:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Zymomonas
## 2023-03-15 20:26:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Halothiobacillaceae.g__Halothiobacillus
## 2023-03-15 20:26:59 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Microscilla
## 2023-03-15 20:27:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Lentisphaerae.c__Lentisphaeria.o__Lentisphaerales.f__Lentisphaeraceae.g__Lentisphaera
## 2023-03-15 20:27:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Dictyoglomi.c__Dictyoglomia.o__Dictyoglomales.f__Dictyoglomaceae.g__Dictyoglomus
## 2023-03-15 20:27:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Thermales.f__Thermaceae.g__Marinithermus
## 2023-03-15 20:27:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Shimia
## 2023-03-15 20:27:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Dechloromonas
## 2023-03-15 20:27:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylobacteriaceae.g__Microvirga
## 2023-03-15 20:27:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Rubinisphaera
## 2023-03-15 20:27:00 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Polycyclovorans
## 2023-03-15 20:27:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Novispirillum
## 2023-03-15 20:27:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfonatronaceae.g__Desulfonatronum
## 2023-03-15 20:27:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Falsirhodobacter
## 2023-03-15 20:27:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Maricaulis
## 2023-03-15 20:27:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Gallionellales.f__Gallionellaceae.g__Ferriphaselus
## 2023-03-15 20:27:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Pelagibacterium
## 2023-03-15 20:27:01 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Confluentimicrobium
## 2023-03-15 20:27:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Riemerella
## 2023-03-15 20:27:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Maribius
## 2023-03-15 20:27:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Poxviridae.g__Capripoxvirus
## 2023-03-15 20:27:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Glycomycetales.f__Glycomycetaceae.g__Glycomyces
## 2023-03-15 20:27:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Saccharibacillus
## 2023-03-15 20:27:02 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Arenimonas
## 2023-03-15 20:27:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Selenomonadaceae.g__Mitsuokella
## 2023-03-15 20:27:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Acidobacteria.c__Solibacteres.o__Solibacterales.f__Solibacteraceae.g__Candidatus_Solibacter
## 2023-03-15 20:27:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Bacteroidaceae.g__Bacteroides
## 2023-03-15 20:27:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Viridibacillus
## 2023-03-15 20:27:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Carnobacteriaceae.g__Allofustis
## 2023-03-15 20:27:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Tanticharoenia
## 2023-03-15 20:27:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Plantibacter
## 2023-03-15 20:27:03 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Salinarchaeum
## 2023-03-15 20:27:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Aurantimonadaceae.g__Martelella
## 2023-03-15 20:27:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Papillomaviridae.g__Lambdapapillomavirus
## 2023-03-15 20:27:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Thermonemataceae.g__Thermonema
## 2023-03-15 20:27:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Filomicrobium
## 2023-03-15 20:27:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Micavibrio
## 2023-03-15 20:27:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Pandoraea
## 2023-03-15 20:27:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Dermatophilus
## 2023-03-15 20:27:04 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halorhabdus
## 2023-03-15 20:27:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Flaviflexus
## 2023-03-15 20:27:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulforegula
## 2023-03-15 20:27:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Saccharomonospora
## 2023-03-15 20:27:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Gordonibacter
## 2023-03-15 20:27:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Thiorhodospira
## 2023-03-15 20:27:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Rikenellaceae.g__Mucinivorans
## 2023-03-15 20:27:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Dicistroviridae.g__Cripavirus
## 2023-03-15 20:27:05 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Weeksella
## 2023-03-15 20:27:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Marinovum
## 2023-03-15 20:27:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Haematospirillum
## 2023-03-15 20:27:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Cyanobium
## 2023-03-15 20:27:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Hamadaea
## 2023-03-15 20:27:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Kurthia
## 2023-03-15 20:27:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Burkholderiaceae.g__Polynucleobacter
## 2023-03-15 20:27:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Polyangiaceae.g__Chondromyces
## 2023-03-15 20:27:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Dokdonella
## 2023-03-15 20:27:06 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Leptotrichiaceae.g__Sebaldella
## 2023-03-15 20:27:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Gulosibacter
## 2023-03-15 20:27:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Arcanobacterium
## 2023-03-15 20:27:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Arsukibacterium
## 2023-03-15 20:27:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Chitinilyticum
## 2023-03-15 20:27:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Gallibacterium
## 2023-03-15 20:27:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Allokutzneria
## 2023-03-15 20:27:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Rudaea
## 2023-03-15 20:27:07 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Coriobacteriales.f__Coriobacteriaceae.g__Enorma
## 2023-03-15 20:27:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Midichloriaceae.g__Candidatus_Midichloria
## 2023-03-15 20:27:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Ferrimicrobium
## 2023-03-15 20:27:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophaceae.g__Desulfomonile
## 2023-03-15 20:27:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Paludibacterium
## 2023-03-15 20:27:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylobacteriaceae.g__Meganema
## 2023-03-15 20:27:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Xylella
## 2023-03-15 20:27:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Orthomyxoviridae.g__Isavirus
## 2023-03-15 20:27:08 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Alkaliflexus
## 2023-03-15 20:27:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Magnetospira
## 2023-03-15 20:27:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Agrococcus
## 2023-03-15 20:27:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Veillonellales.f__Veillonellaceae.g__Veillonella
## 2023-03-15 20:27:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Actinocatenispora
## 2023-03-15 20:27:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Vitellibacter
## 2023-03-15 20:27:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Desulfurobacteriales.f__Desulfurobacteriaceae.g__Desulfurobacterium
## 2023-03-15 20:27:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Johnsonella
## 2023-03-15 20:27:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cardiobacteriales.f__Cardiobacteriaceae.g__Dichelobacter
## 2023-03-15 20:27:09 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Kineosporiales.f__Kineosporiaceae.g__Angustibacter
## 2023-03-15 20:27:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Propionibacteriaceae.g__Propionimicrobium
## 2023-03-15 20:27:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.g__Emaravirus
## 2023-03-15 20:27:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Gordoniaceae.g__Gordonia
## 2023-03-15 20:27:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Chlamydiaceae.g__Chlamydia
## 2023-03-15 20:27:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Pseudomonadaceae.g__Oblitimonas
## 2023-03-15 20:27:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Finegoldia
## 2023-03-15 20:27:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Candidatus_Cloacimonetes.g__Candidatus_Cloacimonas
## 2023-03-15 20:27:10 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Xanthomonadaceae.g__Thermomonas
## 2023-03-15 20:27:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Eggerthella
## 2023-03-15 20:27:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Orenia
## 2023-03-15 20:27:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Nafulsella
## 2023-03-15 20:27:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Pseudoglutamicibacter
## 2023-03-15 20:27:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Sediminibacterium
## 2023-03-15 20:27:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Roseburia
## 2023-03-15 20:27:11 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Candidatus_Stoquefichus
## 2023-03-15 20:27:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylosarcina
## 2023-03-15 20:27:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Selenomonadales.f__Sporomusaceae.g__Anaeromusa
## 2023-03-15 20:27:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Kineosporiales.f__Kineosporiaceae.g__Kineococcus
## 2023-03-15 20:27:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Flavihumibacter
## 2023-03-15 20:27:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thioflavicoccus
## 2023-03-15 20:27:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Pilimelia
## 2023-03-15 20:27:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Dicistroviridae.g__Aparavirus
## 2023-03-15 20:27:12 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Neorickettsia
## 2023-03-15 20:27:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Spirosoma
## 2023-03-15 20:27:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Kinetoplastibacterium
## 2023-03-15 20:27:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Caldicoprobacteraceae.g__Caldicoprobacter
## 2023-03-15 20:27:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Hydrogenibacillus
## 2023-03-15 20:27:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobulbaceae.g__Desulfobulbus
## 2023-03-15 20:27:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Anaerobaculum
## 2023-03-15 20:27:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Emticicia
## 2023-03-15 20:27:13 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Orbales.f__Orbaceae.g__Frischella
## 2023-03-15 20:27:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Hyphomonadaceae.g__Hirschia
## 2023-03-15 20:27:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseivivax
## 2023-03-15 20:27:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Catenuloplanes
## 2023-03-15 20:27:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhizobiaceae.g__Neorhizobium
## 2023-03-15 20:27:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Echinicola
## 2023-03-15 20:27:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Salivirus
## 2023-03-15 20:27:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Candidatus_Paracaedibacteraceae.g__Candidatus_Paracaedibacter
## 2023-03-15 20:27:14 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Muricauda
## 2023-03-15 20:27:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Methylibium
## 2023-03-15 20:27:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Methylocella
## 2023-03-15 20:27:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.o__Methylacidiphilales.f__Methylacidiphilaceae.g__Methylacidiphilum
## 2023-03-15 20:27:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.g__Candidatus_Puniceispirillum
## 2023-03-15 20:27:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.g__Caedibacter
## 2023-03-15 20:27:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Methylophilales.f__Methylophilaceae.g__Methylotenera
## 2023-03-15 20:27:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.g__Tropheryma
## 2023-03-15 20:27:15 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Olleya
## 2023-03-15 20:27:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Propionibacteriaceae.g__Granulicoccus
## 2023-03-15 20:27:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Roseivirga
## 2023-03-15 20:27:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Gimesia
## 2023-03-15 20:27:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Catenulisporales.f__Actinospicaceae.g__Actinospica
## 2023-03-15 20:27:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Rubritaleaceae.g__Rubritalea
## 2023-03-15 20:27:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Retroviridae.g__Betaretrovirus
## 2023-03-15 20:27:16 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Herpesvirales.f__Alloherpesviridae.g__Batrachovirus
## 2023-03-15 20:27:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Erysipelatoclostridium
## 2023-03-15 20:27:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Sanguibacteroides
## 2023-03-15 20:27:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Acidobacteria.c__Holophagae.o__Holophagales.f__Holophagaceae.g__Geothrix
## 2023-03-15 20:27:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Pluralibacter
## 2023-03-15 20:27:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Holosporaceae.g__Holospora
## 2023-03-15 20:27:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prevotellaceae.g__Prevotella
## 2023-03-15 20:27:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sneathiellales.f__Sneathiellaceae.g__Sneathiella
## 2023-03-15 20:27:17 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Eikenella
## 2023-03-15 20:27:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Enteractinococcus
## 2023-03-15 20:27:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chlamydiae.c__Chlamydiia.o__Chlamydiales.f__Criblamydiaceae.g__Criblamydia
## 2023-03-15 20:27:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Sphingomonadaceae.g__Citromicrobium
## 2023-03-15 20:27:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Faecalicoccus
## 2023-03-15 20:27:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Pseudobacteroides
## 2023-03-15 20:27:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Slackia
## 2023-03-15 20:27:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Ideonella
## 2023-03-15 20:27:18 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Flexithrix
## 2023-03-15 20:27:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Solibacillus
## 2023-03-15 20:27:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfuromonadales.f__Desulfuromonadaceae.g__Pelobacter
## 2023-03-15 20:27:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Microtetraspora
## 2023-03-15 20:27:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Nesiotobacter
## 2023-03-15 20:27:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Halocynthiibacter
## 2023-03-15 20:27:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Herpesvirales.f__Herpesviridae.g__Simplexvirus
## 2023-03-15 20:27:19 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Flammeovirgaceae.g__Marivirga
## 2023-03-15 20:27:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Staphylococcaceae.g__Macrococcus
## 2023-03-15 20:27:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Dactylosporangium
## 2023-03-15 20:27:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Anaerolineae.o__Anaerolineales.f__Anaerolineaceae.g__Anaerolinea
## 2023-03-15 20:27:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Halanaerobiales.f__Halobacteroidaceae.g__Acetohalobium
## 2023-03-15 20:27:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Prauserella
## 2023-03-15 20:27:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Aquificae.c__Aquificae.o__Aquificales.f__Aquificaceae.g__Hydrogenivirga
## 2023-03-15 20:27:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Nakamurellales.f__Nakamurellaceae.g__Nakamurella
## 2023-03-15 20:27:20 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halapricum
## 2023-03-15 20:27:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Thermocrispum
## 2023-03-15 20:27:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Epsilonproteobacteria.o__Campylobacterales.f__Campylobacteraceae.g__Campylobacter
## 2023-03-15 20:27:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Thermobrachium
## 2023-03-15 20:27:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Francisellaceae.g__Francisella
## 2023-03-15 20:27:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Fervidobacteriaceae.g__Thermosipho
## 2023-03-15 20:27:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Rhodobacter
## 2023-03-15 20:27:21 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Frankiales.f__Sporichthyaceae.g__Sporichthya
## 2023-03-15 20:27:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Cellvibrionales.f__Porticoccaceae.g__Porticoccus
## 2023-03-15 20:27:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Geofilum
## 2023-03-15 20:27:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Amantichitinum
## 2023-03-15 20:27:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Candidatus_Korarchaeota.g__Candidatus_Korarchaeum
## 2023-03-15 20:27:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Symbiobacteriaceae.g__Symbiobacterium
## 2023-03-15 20:27:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Robinsoniella
## 2023-03-15 20:27:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Kosakonia
## 2023-03-15 20:27:22 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Chitinophagaceae.g__Segetibacter
## 2023-03-15 20:27:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Phycodnaviridae.g__Prasinovirus
## 2023-03-15 20:27:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Tatumella
## 2023-03-15 20:27:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacterales_Family_III._Incertae_Sedis.g__Caldicellulosiruptor
## 2023-03-15 20:27:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Candidatus_Soleaferrea
## 2023-03-15 20:27:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Sulfitobacter
## 2023-03-15 20:27:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Natrialbales.f__Natrialbaceae.g__Haloterrigena
## 2023-03-15 20:27:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.g__Anaerosporomusa
## 2023-03-15 20:27:23 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Alcanivoracaceae.g__Kangiella
## 2023-03-15 20:27:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Fibrella
## 2023-03-15 20:27:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Cecembia
## 2023-03-15 20:27:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Waikavirus
## 2023-03-15 20:27:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Acidobacteria.c__Blastocatellia.g__Chloracidobacterium
## 2023-03-15 20:27:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Pelagibaca
## 2023-03-15 20:27:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Succinivibrionaceae.g__Succinivibrio
## 2023-03-15 20:27:24 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.g__Candidatus_Profftella
## 2023-03-15 20:27:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Gemmata
## 2023-03-15 20:27:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Elusimicrobia.c__Endomicrobia.o__Endomicrobiales.f__Endomicrobiaceae.g__Endomicrobium
## 2023-03-15 20:27:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Candidatus_Arthromitus
## 2023-03-15 20:27:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Deinococcales.f__Trueperaceae.g__Truepera
## 2023-03-15 20:27:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Coleofasciculus
## 2023-03-15 20:27:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Oscillatoriales.g__Kamptonema
## 2023-03-15 20:27:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Tenacibaculum
## 2023-03-15 20:27:25 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Sicinivirus
## 2023-03-15 20:27:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Haliscomenobacter
## 2023-03-15 20:27:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Promicromonosporaceae.g__Promicromonospora
## 2023-03-15 20:27:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Azohydromonas
## 2023-03-15 20:27:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Planomonospora
## 2023-03-15 20:27:26 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Mobilicoccus
## 2023-03-15 20:27:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Pirellula
## 2023-03-15 20:27:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Ornithobacterium
## 2023-03-15 20:27:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Flavonifractor
## 2023-03-15 20:27:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Mizugakiibacter
## 2023-03-15 20:27:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Saccharibacter
## 2023-03-15 20:27:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Lechevalieria
## 2023-03-15 20:27:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanothermaceae.g__Methanothermus
## 2023-03-15 20:27:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.o__Spirochaetales.f__Spirochaetaceae.g__Treponema
## 2023-03-15 20:27:27 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Kiloniellales.f__Kiloniellaceae.g__Kiloniella
## 2023-03-15 20:27:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Planctopirus
## 2023-03-15 20:27:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Actinobaculum
## 2023-03-15 20:27:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Rhodothermaeota.c__Balneolia.o__Balneolales.f__Balneolaceae.g__Gracilimonas
## 2023-03-15 20:27:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Nitrospirae.c__Nitrospira.o__Nitrospirales.f__Nitrospiraceae.g__Candidatus_Magnetobacterium
## 2023-03-15 20:27:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Methylophaga
## 2023-03-15 20:27:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Defluviimonas
## 2023-03-15 20:27:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Thermomicrobia.o__Sphaerobacterales.f__Sphaerobacteraceae.g__Sphaerobacter
## 2023-03-15 20:27:28 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Sphaerotilus
## 2023-03-15 20:27:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Ruegeria
## 2023-03-15 20:27:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Thioclava
## 2023-03-15 20:27:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Propionicicella
## 2023-03-15 20:27:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Cycloclasticus
## 2023-03-15 20:27:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Thermotogales.f__Thermotogaceae.g__Thermotoga
## 2023-03-15 20:27:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Sphingomonadales.f__Erythrobacteraceae.g__Altererythrobacter
## 2023-03-15 20:27:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Papillomaviridae.g__Omegapapillomavirus
## 2023-03-15 20:27:29 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Amorphus
## 2023-03-15 20:27:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Arsenicicoccus
## 2023-03-15 20:27:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Saprospira
## 2023-03-15 20:27:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Vulgatibacteraceae.g__Vulgatibacter
## 2023-03-15 20:27:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.g__Pseudoflavonifractor
## 2023-03-15 20:27:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Haemophilus
## 2023-03-15 20:27:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Cellulosilyticum
## 2023-03-15 20:27:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Pseudomonadaceae.g__Azotobacter
## 2023-03-15 20:27:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Xylophilus
## 2023-03-15 20:27:30 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cyclobacteriaceae.g__Belliella
## 2023-03-15 20:27:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Tepidicaulis
## 2023-03-15 20:27:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Microbispora
## 2023-03-15 20:27:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Xanthobacteraceae.g__Xanthobacter
## 2023-03-15 20:27:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Skermanella
## 2023-03-15 20:27:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Aneurinibacillus
## 2023-03-15 20:27:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Nannocystaceae.g__Plesiocystis
## 2023-03-15 20:27:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Leuconostocaceae.g__Leuconostoc
## 2023-03-15 20:27:31 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Gracilibacillus
## 2023-03-15 20:27:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Erysipelotrichia.o__Erysipelotrichales.f__Erysipelotrichaceae.g__Coprobacillus
## 2023-03-15 20:27:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfurellales.f__Desulfurellaceae.g__Desulfurella
## 2023-03-15 20:27:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.g__Deferrisoma
## 2023-03-15 20:27:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermatophilaceae.g__Kineosphaera
## 2023-03-15 20:27:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Gemmatimonadetes.c__Gemmatimonadetes.o__Gemmatimonadales.f__Gemmatimonadaceae.g__Gemmatirosa
## 2023-03-15 20:27:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinomycetospora
## 2023-03-15 20:27:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Rufibacter
## 2023-03-15 20:27:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Mangrovimonas
## 2023-03-15 20:27:32 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Pusillimonas
## 2023-03-15 20:27:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Sandaracinaceae.g__Sandaracinus
## 2023-03-15 20:27:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiocapsa
## 2023-03-15 20:27:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Acetobacteraceae.g__Belnapia
## 2023-03-15 20:27:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Mycoplasmatales.f__Mycoplasmataceae.g__Ureaplasma
## 2023-03-15 20:27:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Paenibacillaceae.g__Thermobacillus
## 2023-03-15 20:27:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Heliobacteriaceae.g__Heliobacterium
## 2023-03-15 20:27:33 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Nidovirales.f__Coronaviridae.g__Bafinivirus
## 2023-03-15 20:27:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Vagococcus
## 2023-03-15 20:27:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylomicrobium
## 2023-03-15 20:27:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Zobellia
## 2023-03-15 20:27:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.g__Fangia
## 2023-03-15 20:27:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Thermodesulfobacteria.c__Thermodesulfobacteria.o__Thermodesulfobacteriales.f__Thermodesulfobacteriaceae.g__Thermosulfurimonas
## 2023-03-15 20:27:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.c__Verrucomicrobiae.o__Verrucomicrobiales.f__Verrucomicrobia_subdivision_3.g__Pedosphaera
## 2023-03-15 20:27:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Poxviridae.g__Betaentomopoxvirus
## 2023-03-15 20:27:34 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Pleurocapsales.g__Xenococcus
## 2023-03-15 20:27:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Caudovirales.f__Myoviridae.g__Spo1virus
## 2023-03-15 20:27:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermacoccaceae.g__Demetria
## 2023-03-15 20:27:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiaceae.g__Fervidicella
## 2023-03-15 20:27:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfovibrionaceae.g__Lawsonia
## 2023-03-15 20:27:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Enterococcaceae.g__Catellicoccus
## 2023-03-15 20:27:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Bifidobacteriales.f__Bifidobacteriaceae.g__Scardovia
## 2023-03-15 20:27:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rickettsiales.f__Anaplasmataceae.g__Anaplasma
## 2023-03-15 20:27:35 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Astroviridae.g__Mamastrovirus
## 2023-03-15 20:27:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Zetaproteobacteria.o__Mariprofundales.f__Mariprofundaceae.g__Mariprofundus
## 2023-03-15 20:27:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.g__Candidatus_Sulcia
## 2023-03-15 20:27:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhodobiaceae.g__Lutibaculum
## 2023-03-15 20:27:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Eubacteriaceae.g__Eubacterium
## 2023-03-15 20:27:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Fictibacillus
## 2023-03-15 20:27:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Thauera
## 2023-03-15 20:27:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Leifsonia
## 2023-03-15 20:27:36 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Halobacillus
## 2023-03-15 20:27:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Tymovirales.f__Alphaflexiviridae.g__Potexvirus
## 2023-03-15 20:27:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Cellulomonadaceae.g__Actinotalea
## 2023-03-15 20:27:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Neisseria
## 2023-03-15 20:27:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Caldilineae.o__Caldilineales.f__Caldilineaceae.g__Caldilinea
## 2023-03-15 20:27:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Serinicoccus
## 2023-03-15 20:27:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Demequinaceae.g__Demequina
## 2023-03-15 20:27:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Candidatus_Regiella
## 2023-03-15 20:27:37 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Alicycliphilus
## 2023-03-15 20:27:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chloroflexi.c__Dehalococcoidia.o__Dehalococcoidales.f__Dehalococcoidaceae.g__Dehalococcoides
## 2023-03-15 20:27:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Candidatus_Aquiluna
## 2023-03-15 20:27:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Knoellia
## 2023-03-15 20:27:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Muribacter
## 2023-03-15 20:27:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.g__Reyranella
## 2023-03-15 20:27:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Acidaminococcales.f__Acidaminococcaceae.g__Acidaminococcus
## 2023-03-15 20:27:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Sphingobacteriia.o__Sphingobacteriales.f__Sphingobacteriaceae.g__Pseudopedobacter
## 2023-03-15 20:27:38 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Advenella
## 2023-03-15 20:27:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Verrucomicrobia.c__Opitutae.o__Opitutales.f__Opitutaceae.g__Opitutus
## 2023-03-15 20:27:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylobacter
## 2023-03-15 20:27:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Picornaviridae.g__Hepatovirus
## 2023-03-15 20:27:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Thermoactinomycetaceae.g__Risungbinella
## 2023-03-15 20:27:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Caulobacterales.f__Caulobacteraceae.g__Phenylobacterium
## 2023-03-15 20:27:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Helcococcus
## 2023-03-15 20:27:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Fodinicurvata
## 2023-03-15 20:27:39 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Planctomyces
## 2023-03-15 20:27:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Mageeibacillus
## 2023-03-15 20:27:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Segniliparaceae.g__Segniliparus
## 2023-03-15 20:27:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Polyangiaceae.g__Sorangium
## 2023-03-15 20:27:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanobacteriaceae.g__Methanothermobacter
## 2023-03-15 20:27:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.g__Thermobispora
## 2023-03-15 20:27:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Petrotogales.g__Defluviitoga
## 2023-03-15 20:27:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Corynebacteriales.f__Mycobacteriaceae.g__Amycolicicoccus
## 2023-03-15 20:27:40 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Schleiferiaceae.g__Schleiferia
## 2023-03-15 20:27:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Ventosimonadaceae.g__Ventosimonas
## 2023-03-15 20:27:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Wenzhouxiangellaceae.g__Wenzhouxiangella
## 2023-03-15 20:27:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Carnimonas
## 2023-03-15 20:27:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.g__Elioraea
## 2023-03-15 20:27:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Beijerinckiaceae.g__Chelatococcus
## 2023-03-15 20:27:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Trueperella
## 2023-03-15 20:27:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Rhizobiaceae.g__Agrobacterium
## 2023-03-15 20:27:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Limnohabitans
## 2023-03-15 20:27:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Inquilinus
## 2023-03-15 20:27:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfomicrobiaceae.g__Desulfomicrobium
## 2023-03-15 20:27:41 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Deferribacteres.c__Deferribacteres.o__Deferribacterales.f__Deferribacteraceae.g__Calditerrivibrio
## 2023-03-15 20:27:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Acidimicrobiia.o__Acidimicrobiales.f__Acidimicrobiaceae.g__Ilumatobacter
## 2023-03-15 20:27:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Lentimicrobiaceae.g__Lentimicrobium
## 2023-03-15 20:27:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Sutterellaceae.g__Sutterella
## 2023-03-15 20:27:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Jonquetella
## 2023-03-15 20:27:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Chromatiaceae.g__Thiorhodovibrio
## 2023-03-15 20:27:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Staphylococcaceae.g__Jeotgalicoccus
## 2023-03-15 20:27:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Blastochloris
## 2023-03-15 20:27:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Histophilus
## 2023-03-15 20:27:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Intrasporangiaceae.g__Phycicoccus
## 2023-03-15 20:27:42 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Acidaminococcales.f__Acidaminococcaceae.g__Succinispira
## 2023-03-15 20:27:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Paucibacter
## 2023-03-15 20:27:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Piscirickettsiaceae.g__Thiomicrospira
## 2023-03-15 20:27:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Pleomorphomonas
## 2023-03-15 20:27:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Rhodoferax
## 2023-03-15 20:27:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Actinomycetales.f__Actinomycetaceae.g__Varibaculum
## 2023-03-15 20:27:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Nocardioidaceae.g__Pimelobacter
## 2023-03-15 20:27:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Alloactinosynnema
## 2023-03-15 20:27:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Pseudonocardiales.f__Pseudonocardiaceae.g__Actinoalloteichus
## 2023-03-15 20:27:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Aquincola
## 2023-03-15 20:27:43 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophaceae.g__Desulfobacca
## 2023-03-15 20:27:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Candidatus_Endolissoclinum
## 2023-03-15 20:27:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Veillonellales.f__Veillonellaceae.g__Dialister
## 2023-03-15 20:27:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Negativicutes.o__Acidaminococcales.f__Acidaminococcaceae.g__Phascolarctobacterium
## 2023-03-15 20:27:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfovibrionales.f__Desulfovibrionaceae.g__Desulfocurvus
## 2023-03-15 20:27:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Dermacoccaceae.g__Luteipulveratus
## 2023-03-15 20:27:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Sinomonas
## 2023-03-15 20:27:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Intestinibacter
## 2023-03-15 20:27:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiales_Family_XVII._Incertae_Sedis.g__Thermaerobacter
## 2023-03-15 20:27:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Neisseriaceae.g__Morococcus
## 2023-03-15 20:27:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Methylocystaceae.g__Methylopila
## 2023-03-15 20:27:44 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Clostridiales_Family_XIII._Incertae_Sedis.g__Casaltella
## 2023-03-15 20:27:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prolixibacteraceae.g__Draconibacterium
## 2023-03-15 20:27:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Oceanobacillus
## 2023-03-15 20:27:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Ruminococcaceae.g__Faecalibacterium
## 2023-03-15 20:27:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Nitrosomonadales.f__Nitrosomonadaceae.g__Nitrosospira
## 2023-03-15 20:27:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Catenulisporales.f__Catenulisporaceae.g__Catenulispora
## 2023-03-15 20:27:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Actinobacillus
## 2023-03-15 20:27:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Tissierellia.o__Tissierellales.f__Peptoniphilaceae.g__Parvimonas
## 2023-03-15 20:27:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Peptostreptococcaceae.g__Filifactor
## 2023-03-15 20:27:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Coriobacteriia.o__Eggerthellales.f__Eggerthellaceae.g__Cryptobacterium
## 2023-03-15 20:27:45 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Flavobacteriia.o__Flavobacteriales.f__Flavobacteriaceae.g__Aquimarina
## 2023-03-15 20:27:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Enterobacteriales.f__Enterobacteriaceae.g__Raoultella
## 2023-03-15 20:27:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinifilaceae.g__Marinifilum
## 2023-03-15 20:27:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Nitriliruptoria.o__Nitriliruptorales.f__Nitriliruptoraceae.g__Nitriliruptor
## 2023-03-15 20:27:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Hyphomicrobiaceae.g__Prosthecomicrobium
## 2023-03-15 20:27:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Aeromonadales.f__Succinivibrionaceae.g__Succinimonas
## 2023-03-15 20:27:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Cobetia
## 2023-03-15 20:27:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Listeriaceae.g__Listeria
## 2023-03-15 20:27:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Chroococcales.g__Acaryochloris
## 2023-03-15 20:27:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Streptosporangium
## 2023-03-15 20:27:46 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Spirochaetes.c__Spirochaetia.f__Leptospiraceae.g__Turneriella
## 2023-03-15 20:27:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Tymovirales.f__Tymoviridae.g__Tymovirus
## 2023-03-15 20:27:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Ramlibacter
## 2023-03-15 20:27:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Chlorobi.c__Chlorobia.o__Chlorobiales.f__Chlorobiaceae.g__Chlorobaculum
## 2023-03-15 20:27:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Microbacteriaceae.g__Mycetocola
## 2023-03-15 20:27:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Staphylococcaceae.g__Salinicoccus
## 2023-03-15 20:27:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Micrococcaceae.g__Pseudarthrobacter
## 2023-03-15 20:27:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Propionibacteriales.f__Propionibacteriaceae.g__Aestuariimicrobium
## 2023-03-15 20:27:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micromonosporales.f__Micromonosporaceae.g__Actinoplanes
## 2023-03-15 20:27:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pseudomonadales.f__Moraxellaceae.g__Perlucidibaca
## 2023-03-15 20:27:47 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.g__Roseateles
## 2023-03-15 20:27:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Syntrophobacterales.f__Syntrophobacteraceae.g__Syntrophobacter
## 2023-03-15 20:27:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Myxococcales.f__Cystobacteraceae.g__Stigmatella
## 2023-03-15 20:27:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodospirillales.f__Rhodospirillaceae.g__Thalassospira
## 2023-03-15 20:27:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Nitrospirae.c__Nitrospira.o__Nitrospirales.f__Nitrospiraceae.g__Leptospirillum
## 2023-03-15 20:27:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Thermales.f__Thermaceae.g__Meiothermus
## 2023-03-15 20:27:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Chitinophagia.o__Chitinophagales.f__Saprospiraceae.g__Lewinella
## 2023-03-15 20:27:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Flaviviridae.g__Flavivirus
## 2023-03-15 20:27:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Marinilabiliaceae.g__Saccharicrinis
## 2023-03-15 20:27:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Tyzzerella
## 2023-03-15 20:27:48 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Salinisphaerales.f__Salinisphaeraceae.g__Salinisphaera
## 2023-03-15 20:27:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Synergistetes.c__Synergistia.o__Synergistales.f__Synergistaceae.g__Thermovirga
## 2023-03-15 20:27:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Loktanella
## 2023-03-15 20:27:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Caldiserica.c__Caldisericia.o__Caldisericales.f__Caldisericaceae.g__Caldisericum
## 2023-03-15 20:27:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Oceanospirillales.f__Halomonadaceae.g__Candidatus_Evansia
## 2023-03-15 20:27:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Methylococcales.f__Methylococcaceae.g__Methylocaldum
## 2023-03-15 20:27:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Flaviviridae.g__Pestivirus
## 2023-03-15 20:27:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Deltaproteobacteria.o__Desulfobacterales.f__Desulfobacteraceae.g__Desulfosarcina
## 2023-03-15 20:27:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Rubellimicrobium
## 2023-03-15 20:27:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Thalassobacillus
## 2023-03-15 20:27:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhizobiales.f__Phyllobacteriaceae.g__Nitratireductor
## 2023-03-15 20:27:49 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Haloferacales.f__Haloferacaceae.g__Halolamina
## 2023-03-15 20:27:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Chromatiales.f__Ectothiorhodospiraceae.g__Acidihalobacter
## 2023-03-15 20:27:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Pseudacidovorax
## 2023-03-15 20:27:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Planococcaceae.g__Sporosarcina
## 2023-03-15 20:27:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Nostocales.f__Nostocaceae.g__Cylindrospermopsis
## 2023-03-15 20:27:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Porphyromonadaceae.g__Parabacteroides
## 2023-03-15 20:27:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Nevskiales.f__Sinobacteraceae.g__Hydrocarboniphaga
## 2023-03-15 20:27:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Jiangellales.f__Jiangellaceae.g__Jiangella
## 2023-03-15 20:27:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Schlesneria
## 2023-03-15 20:27:50 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.f__Phycodnaviridae.g__Prymnesiovirus
## 2023-03-15 20:27:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Cytophagaceae.g__Runella
## 2023-03-15 20:27:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Pasteurella
## 2023-03-15 20:27:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Viruses.o__Picornavirales.f__Secoviridae.g__Nepovirus
## 2023-03-15 20:27:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Acidobacteria.g__Thermoanaerobaculum
## 2023-03-15 20:27:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Comamonadaceae.g__Caenimonas
## 2023-03-15 20:27:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Neisseriales.f__Chromobacteriaceae.g__Vogesella
## 2023-03-15 20:27:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Crenarchaeota.c__Thermoprotei.o__Desulfurococcales.f__Desulfurococcaceae.g__Staphylothermus
## 2023-03-15 20:27:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Alphaproteobacteria.o__Rhodobacterales.f__Rhodobacteraceae.g__Roseovarius
## 2023-03-15 20:27:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Lactobacillales.f__Lactobacillaceae.g__Lactobacillus
## 2023-03-15 20:27:51 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Xanthomonadales.f__Rhodanobacteraceae.g__Dyella
## 2023-03-15 20:27:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Burkholderiales.f__Alcaligenaceae.g__Oligella
## 2023-03-15 20:27:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Cyanobacteria.o__Stigonematales.g__Chlorogloeopsis
## 2023-03-15 20:27:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Betaproteobacteria.o__Rhodocyclales.f__Rhodocyclaceae.g__Uliginosibacterium
## 2023-03-15 20:27:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Methanobacteria.o__Methanobacteriales.f__Methanobacteriaceae.g__Methanobacterium
## 2023-03-15 20:27:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Halobacteria.o__Halobacteriales.f__Halobacteriaceae.g__Halosimplex
## 2023-03-15 20:27:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Thiotrichales.f__Thiotrichaceae.g__Thiothrix
## 2023-03-15 20:27:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Archaea.p__Euryarchaeota.c__Thermoplasmata.o__Methanomassiliicoccales.f__Methanomassiliicoccaceae.g__Methanomassiliicoccus
## 2023-03-15 20:27:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Gammaproteobacteria.o__Pasteurellales.f__Pasteurellaceae.g__Bibersteinia
## 2023-03-15 20:27:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Proteobacteria.c__Acidithiobacillia.o__Acidithiobacillales.f__Thermithiobacillaceae.g__Thermithiobacillus
## 2023-03-15 20:27:52 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Streptosporangiales.f__Streptosporangiaceae.g__Herbidospora
## 2023-03-15 20:27:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Planctomycetes.c__Planctomycetia.o__Planctomycetales.f__Planctomycetaceae.g__Zavarzinella
## 2023-03-15 20:27:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Thermoanaerobacterales.f__Thermoanaerobacteraceae.g__Moorella
## 2023-03-15 20:27:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Bacillaceae.g__Ornithinibacillus
## 2023-03-15 20:27:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Cytophagia.o__Cytophagales.f__Hymenobacteraceae.g__Pontibacter
## 2023-03-15 20:27:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Fusobacteria.c__Fusobacteriia.o__Fusobacteriales.f__Fusobacteriaceae.g__Psychrilyobacter
## 2023-03-15 20:27:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Lachnospiraceae.g__Stomatobaculum
## 2023-03-15 20:27:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Tenericutes.c__Mollicutes.o__Acholeplasmatales.f__Acholeplasmataceae.g__Acholeplasma
## 2023-03-15 20:27:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Thermotogae.c__Thermotogae.o__Kosmotogales.f__Kosmotogaceae.g__Kosmotoga
## 2023-03-15 20:27:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Actinobacteria.c__Actinobacteria.o__Micrococcales.f__Ruaniaceae.g__Ruania
## 2023-03-15 20:27:53 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Bacilli.o__Bacillales.f__Alicyclobacillaceae.g__Kyrpidia
## 2023-03-15 20:27:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Bacteroidetes.c__Bacteroidia.o__Bacteroidales.f__Prolixibacteraceae.g__Sunxiuqinia
## 2023-03-15 20:27:54 INFO::Creating boxplot for categorical data, Putative_combined vs k__Bacteria.p__Firmicutes.c__Clostridia.o__Clostridiales.f__Syntrophomonadaceae.g__Syntrophomonas
maaslin_strigent_group_without <- function_Maaslin2(df_ACC_filter_stringent_Voom_SNM, "Without_combined", "Temp/strigent_group_without")
## [1] "Warning: Deleting existing log file: Temp/strigent_group_without/maaslin2.log"
## 2023-03-15 20:27:55 INFO::Writing function arguments to log file
## 2023-03-15 20:27:55 INFO::Verifying options selected are valid
## 2023-03-15 20:27:55 INFO::Determining format of input files
## 2023-03-15 20:27:55 INFO::Input format is data samples as rows and metadata samples as rows
## 2023-03-15 20:27:55 INFO::Formula for random effects: expr ~ (1 | SEX) + (1 | Ethnicity_Race) + (1 | AGE) + (1 | Neoplasm_Status) + (1 | Clinical_Status_3_Mo_Post.Op) + (1 | Surgical_margin) + (1 | ATYPICAL_MITOTIC_FIGURES)
## 2023-03-15 20:27:55 INFO::Formula for fixed effects: expr ~  Without_combined
## 2023-03-15 20:27:55 INFO::Filter data based on min abundance and min prevalence
## 2023-03-15 20:27:55 INFO::Total samples in data: 77
## 2023-03-15 20:27:55 INFO::Min samples required with min abundance for a feature not to be filtered: 0.000000
## 2023-03-15 20:27:55 INFO::Total filtered features: 0
## 2023-03-15 20:27:55 INFO::Filtered feature names from abundance and prevalence filtering:
## 2023-03-15 20:27:55 INFO::Total filtered features with variance filtering: 0
## 2023-03-15 20:27:55 INFO::Filtered feature names from variance filtering:
## 2023-03-15 20:27:55 INFO::Running selected normalization method: NONE
## 2023-03-15 20:27:55 INFO::Applying z-score to standardize continuous metadata
## 2023-03-15 20:27:55 INFO::Running selected transform method: NONE
## 2023-03-15 20:27:55 INFO::Running selected analysis method: LM
## 2023-03-15 20:27:55 INFO::Creating cluster of 6 R processes
## 2023-03-15 20:28:09 INFO::Counting total values for each feature
## 2023-03-15 20:28:09 WARNING::Deleting existing residuals file: Temp/strigent_group_without/residuals.rds
## 2023-03-15 20:28:09 INFO::Writing residuals to file Temp/strigent_group_without/residuals.rds
## 2023-03-15 20:28:09 WARNING::Deleting existing fitted file: Temp/strigent_group_without/fitted.rds
## 2023-03-15 20:28:09 INFO::Writing fitted values to file Temp/strigent_group_without/fitted.rds
## 2023-03-15 20:28:09 WARNING::Deleting existing ranef file: Temp/strigent_group_without/ranef.rds
## 2023-03-15 20:28:09 INFO::Writing extracted random effects to file Temp/strigent_group_without/ranef.rds
## 2023-03-15 20:28:09 INFO::Writing all results to file (ordered by increasing q-values): Temp/strigent_group_without/all_results.tsv
## 2023-03-15 20:28:09 INFO::Writing the significant results (those which are less than or equal to the threshold of 0.250000 ) to file (ordered by increasing q-values): Temp/strigent_group_without/significant_results.tsv
## 2023-03-15 20:28:09 INFO::Writing heatmap of significant results to file: Temp/strigent_group_without/heatmap.pdf
## [1] "There are no associations to plot!"
## 2023-03-15 20:28:09 INFO::Writing association plots (one for each significant association) to output folder: Temp/strigent_group_without
## [1] "There are no associations to plot!"
maaslin_strigent_group_likely <- function_Maaslin2(df_ACC_filter_stringent_Voom_SNM, "Likely_combined", "Temp/strigent_group_likely")
## [1] "Warning: Deleting existing log file: Temp/strigent_group_likely/maaslin2.log"
## 2023-03-15 20:28:09 INFO::Writing function arguments to log file
## 2023-03-15 20:28:09 INFO::Verifying options selected are valid
## 2023-03-15 20:28:09 INFO::Determining format of input files
## 2023-03-15 20:28:09 INFO::Input format is data samples as rows and metadata samples as rows
## 2023-03-15 20:28:09 INFO::Formula for random effects: expr ~ (1 | SEX) + (1 | Ethnicity_Race) + (1 | AGE) + (1 | Neoplasm_Status) + (1 | Clinical_Status_3_Mo_Post.Op) + (1 | Surgical_margin) + (1 | ATYPICAL_MITOTIC_FIGURES)
## 2023-03-15 20:28:09 INFO::Formula for fixed effects: expr ~  Likely_combined
## 2023-03-15 20:28:09 INFO::Filter data based on min abundance and min prevalence
## 2023-03-15 20:28:09 INFO::Total samples in data: 77
## 2023-03-15 20:28:09 INFO::Min samples required with min abundance for a feature not to be filtered: 0.000000
## 2023-03-15 20:28:09 INFO::Total filtered features: 0
## 2023-03-15 20:28:09 INFO::Filtered feature names from abundance and prevalence filtering:
## 2023-03-15 20:28:09 INFO::Total filtered features with variance filtering: 0
## 2023-03-15 20:28:09 INFO::Filtered feature names from variance filtering:
## 2023-03-15 20:28:09 INFO::Running selected normalization method: NONE
## 2023-03-15 20:28:09 INFO::Applying z-score to standardize continuous metadata
## 2023-03-15 20:28:09 INFO::Running selected transform method: NONE
## 2023-03-15 20:28:09 INFO::Running selected analysis method: LM
## 2023-03-15 20:28:09 INFO::Creating cluster of 6 R processes
## 2023-03-15 20:28:14 INFO::Counting total values for each feature
## 2023-03-15 20:28:14 WARNING::Deleting existing residuals file: Temp/strigent_group_likely/residuals.rds
## 2023-03-15 20:28:14 INFO::Writing residuals to file Temp/strigent_group_likely/residuals.rds
## 2023-03-15 20:28:14 WARNING::Deleting existing fitted file: Temp/strigent_group_likely/fitted.rds
## 2023-03-15 20:28:14 INFO::Writing fitted values to file Temp/strigent_group_likely/fitted.rds
## 2023-03-15 20:28:14 WARNING::Deleting existing ranef file: Temp/strigent_group_likely/ranef.rds
## 2023-03-15 20:28:14 INFO::Writing extracted random effects to file Temp/strigent_group_likely/ranef.rds
## 2023-03-15 20:28:14 INFO::Writing all results to file (ordered by increasing q-values): Temp/strigent_group_likely/all_results.tsv
## 2023-03-15 20:28:14 INFO::Writing the significant results (those which are less than or equal to the threshold of 0.250000 ) to file (ordered by increasing q-values): Temp/strigent_group_likely/significant_results.tsv
## 2023-03-15 20:28:14 INFO::Writing heatmap of significant results to file: Temp/strigent_group_likely/heatmap.pdf
## [1] "There are no associations to plot!"
## 2023-03-15 20:28:14 INFO::Writing association plots (one for each significant association) to output folder: Temp/strigent_group_likely
## [1] "There are no associations to plot!"
maaslin_strigent_group_PC <- function_Maaslin2(df_ACC_filter_stringent_Voom_SNM, "PC_combined", "Temp/strigent_group_PC")
## [1] "Warning: Deleting existing log file: Temp/strigent_group_PC/maaslin2.log"
## 2023-03-15 20:28:14 INFO::Writing function arguments to log file
## 2023-03-15 20:28:14 INFO::Verifying options selected are valid
## 2023-03-15 20:28:14 INFO::Determining format of input files
## 2023-03-15 20:28:14 INFO::Input format is data samples as rows and metadata samples as rows
## 2023-03-15 20:28:14 INFO::Formula for random effects: expr ~ (1 | SEX) + (1 | Ethnicity_Race) + (1 | AGE) + (1 | Neoplasm_Status) + (1 | Clinical_Status_3_Mo_Post.Op) + (1 | Surgical_margin) + (1 | ATYPICAL_MITOTIC_FIGURES)
## 2023-03-15 20:28:14 INFO::Formula for fixed effects: expr ~  PC_combined
## 2023-03-15 20:28:14 INFO::Filter data based on min abundance and min prevalence
## 2023-03-15 20:28:14 INFO::Total samples in data: 77
## 2023-03-15 20:28:14 INFO::Min samples required with min abundance for a feature not to be filtered: 0.000000
## 2023-03-15 20:28:14 INFO::Total filtered features: 0
## 2023-03-15 20:28:14 INFO::Filtered feature names from abundance and prevalence filtering:
## 2023-03-15 20:28:14 INFO::Total filtered features with variance filtering: 0
## 2023-03-15 20:28:14 INFO::Filtered feature names from variance filtering:
## 2023-03-15 20:28:14 INFO::Running selected normalization method: NONE
## 2023-03-15 20:28:14 INFO::Applying z-score to standardize continuous metadata
## 2023-03-15 20:28:14 INFO::Running selected transform method: NONE
## 2023-03-15 20:28:14 INFO::Running selected analysis method: LM
## 2023-03-15 20:28:14 INFO::Creating cluster of 6 R processes
## 2023-03-15 20:28:28 INFO::Counting total values for each feature
## 2023-03-15 20:28:28 WARNING::Deleting existing residuals file: Temp/strigent_group_PC/residuals.rds
## 2023-03-15 20:28:28 INFO::Writing residuals to file Temp/strigent_group_PC/residuals.rds
## 2023-03-15 20:28:28 WARNING::Deleting existing fitted file: Temp/strigent_group_PC/fitted.rds
## 2023-03-15 20:28:28 INFO::Writing fitted values to file Temp/strigent_group_PC/fitted.rds
## 2023-03-15 20:28:28 WARNING::Deleting existing ranef file: Temp/strigent_group_PC/ranef.rds
## 2023-03-15 20:28:28 INFO::Writing extracted random effects to file Temp/strigent_group_PC/ranef.rds
## 2023-03-15 20:28:28 INFO::Writing all results to file (ordered by increasing q-values): Temp/strigent_group_PC/all_results.tsv
## 2023-03-15 20:28:28 INFO::Writing the significant results (those which are less than or equal to the threshold of 0.250000 ) to file (ordered by increasing q-values): Temp/strigent_group_PC/significant_results.tsv
## 2023-03-15 20:28:28 INFO::Writing heatmap of significant results to file: Temp/strigent_group_PC/heatmap.pdf
## [1] "There are no associations to plot!"
## 2023-03-15 20:28:28 INFO::Writing association plots (one for each significant association) to output folder: Temp/strigent_group_PC
## 2023-03-15 20:28:28 INFO::Plotting associations from most to least significant, grouped by metadata
## 2023-03-15 20:28:28 INFO::Plotting data for metadata number 1, PC_combined
## 2023-03-15 20:28:28 INFO::Creating boxplot for categorical data, PC_combined vs k__Bacteria.p__Deinococcus.Thermus.c__Deinococci.o__Thermales.f__Thermaceae.g__Meiothermus
maaslin_strigent_group_putative <- function_Maaslin2(df_ACC_filter_stringent_Voom_SNM, "Putative_combined", "Temp/strigent_group_putative")
## [1] "Warning: Deleting existing log file: Temp/strigent_group_putative/maaslin2.log"
## 2023-03-15 20:28:29 INFO::Writing function arguments to log file
## 2023-03-15 20:28:29 INFO::Verifying options selected are valid
## 2023-03-15 20:28:29 INFO::Determining format of input files
## 2023-03-15 20:28:29 INFO::Input format is data samples as rows and metadata samples as rows
## 2023-03-15 20:28:29 INFO::Formula for random effects: expr ~ (1 | SEX) + (1 | Ethnicity_Race) + (1 | AGE) + (1 | Neoplasm_Status) + (1 | Clinical_Status_3_Mo_Post.Op) + (1 | Surgical_margin) + (1 | ATYPICAL_MITOTIC_FIGURES)
## 2023-03-15 20:28:29 INFO::Formula for fixed effects: expr ~  Putative_combined
## 2023-03-15 20:28:29 INFO::Filter data based on min abundance and min prevalence
## 2023-03-15 20:28:29 INFO::Total samples in data: 77
## 2023-03-15 20:28:29 INFO::Min samples required with min abundance for a feature not to be filtered: 0.000000
## 2023-03-15 20:28:29 INFO::Total filtered features: 0
## 2023-03-15 20:28:29 INFO::Filtered feature names from abundance and prevalence filtering:
## 2023-03-15 20:28:29 INFO::Total filtered features with variance filtering: 0
## 2023-03-15 20:28:29 INFO::Filtered feature names from variance filtering:
## 2023-03-15 20:28:29 INFO::Running selected normalization method: NONE
## 2023-03-15 20:28:29 INFO::Applying z-score to standardize continuous metadata
## 2023-03-15 20:28:29 INFO::Running selected transform method: NONE
## 2023-03-15 20:28:29 INFO::Running selected analysis method: LM
## 2023-03-15 20:28:29 INFO::Creating cluster of 6 R processes
## 2023-03-15 20:28:44 INFO::Counting total values for each feature
## 2023-03-15 20:28:44 WARNING::Deleting existing residuals file: Temp/strigent_group_putative/residuals.rds
## 2023-03-15 20:28:44 INFO::Writing residuals to file Temp/strigent_group_putative/residuals.rds
## 2023-03-15 20:28:44 WARNING::Deleting existing fitted file: Temp/strigent_group_putative/fitted.rds
## 2023-03-15 20:28:44 INFO::Writing fitted values to file Temp/strigent_group_putative/fitted.rds
## 2023-03-15 20:28:44 WARNING::Deleting existing ranef file: Temp/strigent_group_putative/ranef.rds
## 2023-03-15 20:28:44 INFO::Writing extracted random effects to file Temp/strigent_group_putative/ranef.rds
## 2023-03-15 20:28:44 INFO::Writing all results to file (ordered by increasing q-values): Temp/strigent_group_putative/all_results.tsv
## 2023-03-15 20:28:44 INFO::Writing the significant results (those which are less than or equal to the threshold of 0.250000 ) to file (ordered by increasing q-values): Temp/strigent_group_putative/significant_results.tsv
## 2023-03-15 20:28:44 INFO::Writing heatmap of significant results to file: Temp/strigent_group_putative/heatmap.pdf
## [1] "There are no associations to plot!"
## 2023-03-15 20:28:44 INFO::Writing association plots (one for each significant association) to output folder: Temp/strigent_group_putative
## [1] "There are no associations to plot!"
# extract significantly differential features
fuction_feature <- function(df1, df2, df3, df4){
  maaslin_without <- df1$results %>% filter(qval<0.05) %>% dplyr::select(c("feature", "coef", "qval")) %>%
    setNames(c("feature", "coef_without", "qval_without"))
  maaslin_likely<- df2$results %>% filter(qval<0.05) %>% dplyr::select(c("feature", "coef", "qval")) %>%
    setNames(c("feature", "coef_likely", "qval_likely"))
  maaslin_PC <- df3$results %>% filter(qval<0.05) %>% dplyr::select(c("feature", "coef", "qval")) %>%
    setNames(c("feature", "coef_PC", "qval_PC"))
  maaslin_putative <- df4$results %>% filter(qval<0.05) %>% dplyr::select(c("feature", "coef", "qval")) %>%
    setNames(c("feature", "coef_putative", "qval_putative"))
  
  df_combine <- Reduce(function(x,y){merge(x,y,by="feature",all=TRUE)},
                       list(maaslin_without, maaslin_likely, maaslin_PC, maaslin_putative))
  df_combine_feature <- df_combine %>% dplyr::select(c("coef_without", "coef_likely", "coef_PC", "coef_putative"))
  df_combine_feature[is.na(df_combine_feature)] <- 0
  df_combine_feature[df_combine_feature!=0] <- 1
  
  plot_upset <- upset(df_combine_feature, 
                      keep.order=TRUE, sets.x.label = "Number of differential microbes",
                      queries=list(list(query = intersects, params = list("coef_without","coef_likely","coef_PC","coef_putative"), color = "red",active = T)))
  return(list(df_combine, plot_upset))
}

list_without <- fuction_feature(maaslin_without_group_without, maaslin_without_group_likely, maaslin_without_group_PC, maaslin_without_group_putative)
list_likely <- fuction_feature(maaslin_likely_group_without, maaslin_likely_group_likely, maaslin_likely_group_PC, maaslin_likely_group_putative)
list_PC <- fuction_feature(maaslin_PC_group_without, maaslin_PC_group_likely, maaslin_PC_group_PC, maaslin_PC_group_putative)
list_putative <- fuction_feature(maaslin_putative_group_without, maaslin_putative_group_likely, maaslin_putative_group_PC, maaslin_putative_group_putative)
# list_strigent <- fuction_feature(maaslin_strigent_group_without, maaslin_strigent_group_likely, maaslin_strigent_group_PC, maaslin_strigent_group_putative)
# No siginificantly differential features detected in stringent group under four classifications

df_feature_without <- list_without[[1]]
df_feature_likely <- list_likely[[1]]
df_feature_PC <- list_PC[[1]]
df_feature_putative <- list_putative[[1]]

df_feature_without_core <- na.omit(df_feature_without)
df_feature_likely_core <- na.omit(df_feature_likely)
df_feature_PC_core <- na.omit(df_feature_PC)
df_feature_putative_core <- na.omit(df_feature_putative)

# pdf(file = "Figures/Significantly_differential_microbes_Upset.pdf",height = 3,width = 6)
list_without[[2]]

list_likely[[2]]

list_PC[[2]]

list_putative[[2]]

# dev.off()


# core features that are invariably detected under different classifications
core_features <- Reduce(intersect, list(df_feature_without_core$feature,df_feature_likely_core$feature,
                                        df_feature_PC_core$feature,df_feature_putative_core$feature))

# Visulazation

df_core_features <- Reduce(function(x,y){merge(x,y,by="feature",all=TRUE)},
                           list(df_feature_without_core, df_feature_likely_core, df_feature_PC_core, df_feature_putative_core))
## Warning in merge.data.frame(x, y, by = "feature", all = TRUE): column names
## 'coef_without.x', 'qval_without.x', 'coef_likely.x', 'qval_likely.x',
## 'coef_PC.x', 'qval_PC.x', 'coef_putative.x', 'qval_putative.x',
## 'coef_without.y', 'qval_without.y', 'coef_likely.y', 'qval_likely.y',
## 'coef_PC.y', 'qval_PC.y', 'coef_putative.y', 'qval_putative.y' are duplicated
## in the result
df_core_features <- na.omit(df_core_features)

df_core_features$avg.coef <- rowMeans(df_core_features[ , grep("coef", names(df_core_features))])
df_core_features$avg.qval <- rowMeans(df_core_features[ , grep("qval", names(df_core_features))])
df_core_features$log.avg.qval <- -log(df_core_features$avg.qval)
df_core_features <- df_core_features[order(df_core_features$avg.coef), ]
df_core_features$class <- ifelse(df_core_features$avg.coef < -1, "Enrich_MS1", ifelse(df_core_features$avg.coef > 1, "Enrich_MS2", "Not"))
df_core_features$class <- factor(df_core_features$class, levels = c("Enrich_MS1", "Enrich_MS2", "Not"))

# p <- ggplot(data = df_core_features[,c("avg.coef", "log.avg.qval", "class")], aes(x=avg.coef, y=log.avg.qval, color=class))+
#         geom_point()+
#         scale_color_manual(values = c("#0072B5CC","#E18727CC", "#A0A0A0"))+
#         theme_bw()+
#         xlab("Average Coefficients")+
#         ylab("-Log adjusted p-value")+
#         geom_vline(xintercept = c(-1, 1), linetype="dotted", color = "red", size=1)

dt <- df_core_features[,c("feature", "avg.coef", "log.avg.qval")]
dt$kingdom <- str_extract(df_core_features$feature, "k__[a-zA-Z]+")
dt$kingdom <- factor(dt$kingdom, levels = c("k__Viruses", "k__Archaea", "k__Bacteria"))
p<- ggplot(data = dt, aes(x=avg.coef, y=log.avg.qval, fill=kingdom))+
        geom_point(aes(colour=kingdom)) +
        #scale_color_gradient2(low="#0072B5CC", high="#E18727CC", midpoint=0)+
        scale_color_aaas()+
        theme_bw()+
        xlab("Average Coefficients")+
        ylab("-Log adjusted p-value")+
        geom_vline(xintercept = c(-1, 1), linetype="dotted", color = "red", size=1)
## Warning: Using `size` aesthetic for lines was deprecated in ggplot2 3.4.0.
## ℹ Please use `linewidth` instead.
p

# ggsave(filename = "Figures/Core_features_coefficients.pdf", p, useDingbats = FALSE, width = 5,height = 3.8)

write_csv(df_core_features, file = "../Tables/Core_features_coefficients.csv")

Stratify patients based on the abundance of significant microbes

sig_microbes <- df_core_features[abs(df_core_features$avg.coef)>1, ]$feature

function_ex_sur <- function(in_matrix){
  df_cox <- data.frame()
  list_re <- list()
  for (i in 1:length(sig_microbes)){
    genus <- sig_microbes[i]
    if (genus %in% names(in_matrix)){
      df_s <- in_matrix[,sig_microbes[i], drop=FALSE]
      df_s$class <- ifelse(df_s[,1]>median(df_s[,1]), "high", "low")
      df_s$id <- rownames(df_s)
      
      df_meta_ACC_m <- merge(df_meta_ACC[, c("id", "OS_MONTHS", "CENSOR")], df_s, by="id", all.x = TRUE)
      
      # survival plot
      fit <- survfit(Surv(OS_MONTHS, CENSOR) ~ class, data = df_meta_ACC_m)
      
      p <- ggsurvplot(fit,
                      data = df_meta_ACC_m,
                      conf.int = TRUE,
                      pval = TRUE,
                      palette = c("#0072B5CC","#E18727CC"),
                      xlab = "Time (Monthes)", 
                      legend = "right",
                      legend.title = "",
                      ggtheme = theme_base(),
                      break.x.by = 40)+
        ggtitle(str_extract(genus, "g__.+"))
      # cox analysis
      res.cox <- coxph(Surv(OS_MONTHS, CENSOR) ~ class, data = df_meta_ACC_m)
      cox <- summary(res.cox)
      df_hr <- cox$coefficients %>% as.data.frame()
      rownames(df_hr) <- genus
      df_cox <- rbind(df_cox, df_hr)
      
      list_re[[i]] <- p
    }
  }
  return(list(list_re, df_cox))
}

p_without <- function_ex_sur(df_ACC_Voom_SNM)
p_likely <- function_ex_sur(df_ACC_filter_likely_Voom_SNM)
p_PC <- function_ex_sur(df_ACC_filter_Plate_Center_Voom_SNM)
p_putative <- function_ex_sur(df_ACC_filter_putative_Voom_SNM)
p_stringent <- function_ex_sur(df_ACC_filter_stringent_Voom_SNM)

# pdf(file = "Figures/Biomarker_survial_examination_Voom-SNM_Without.pdf",height = 5,width = 6)
p_without[[1]]
## [[1]]

## 
## [[2]]

## 
## [[3]]

## 
## [[4]]

## 
## [[5]]

## 
## [[6]]

## 
## [[7]]

## 
## [[8]]

## 
## [[9]]

## 
## [[10]]

## 
## [[11]]

## 
## [[12]]

## 
## [[13]]

## 
## [[14]]

## 
## [[15]]

## 
## [[16]]

## 
## [[17]]

## 
## [[18]]

## 
## [[19]]

## 
## [[20]]

## 
## [[21]]

## 
## [[22]]

## 
## [[23]]

## 
## [[24]]

## 
## [[25]]

## 
## [[26]]

## 
## [[27]]

## 
## [[28]]

## 
## [[29]]

## 
## [[30]]

## 
## [[31]]

## 
## [[32]]

## 
## [[33]]

## 
## [[34]]

## 
## [[35]]

# dev.off()
# pdf(file = "Figures/Biomarker_survial_examination_Voom-SNM_Filter_Likely.pdf",height = 5,width = 6)
p_likely[[1]]
## [[1]]

## 
## [[2]]

## 
## [[3]]

## 
## [[4]]

## 
## [[5]]

## 
## [[6]]

## 
## [[7]]

## 
## [[8]]

## 
## [[9]]

## 
## [[10]]

## 
## [[11]]

## 
## [[12]]

## 
## [[13]]

## 
## [[14]]

## 
## [[15]]

## 
## [[16]]

## 
## [[17]]

## 
## [[18]]

## 
## [[19]]

## 
## [[20]]

## 
## [[21]]

## 
## [[22]]

## 
## [[23]]

## 
## [[24]]

## 
## [[25]]

## 
## [[26]]

## 
## [[27]]

## 
## [[28]]

## 
## [[29]]

## 
## [[30]]

## 
## [[31]]

## 
## [[32]]

## 
## [[33]]

## 
## [[34]]

## 
## [[35]]

# dev.off()
# pdf(file = "Figures/Biomarker_survial_examination_Voom-SNM_Filter_PC.pdf",height = 5,width = 6)
p_PC[[1]]
## [[1]]

## 
## [[2]]

## 
## [[3]]

## 
## [[4]]

## 
## [[5]]

## 
## [[6]]

## 
## [[7]]

## 
## [[8]]

## 
## [[9]]

## 
## [[10]]

## 
## [[11]]

## 
## [[12]]

## 
## [[13]]

## 
## [[14]]

## 
## [[15]]

## 
## [[16]]

## 
## [[17]]

## 
## [[18]]

## 
## [[19]]

## 
## [[20]]

## 
## [[21]]

## 
## [[22]]

## 
## [[23]]

## 
## [[24]]

## 
## [[25]]

## 
## [[26]]

## 
## [[27]]

## 
## [[28]]

## 
## [[29]]

## 
## [[30]]

## 
## [[31]]

## 
## [[32]]

## 
## [[33]]

## 
## [[34]]

## 
## [[35]]

# dev.off()
# pdf(file = "Figures/Biomarker_survial_examination_Voom-SNM_Filter_Putative.pdf",height = 5,width = 6)
p_putative[[1]]
## [[1]]

## 
## [[2]]

## 
## [[3]]

## 
## [[4]]

## 
## [[5]]

## 
## [[6]]

## 
## [[7]]

## 
## [[8]]

## 
## [[9]]

## 
## [[10]]

## 
## [[11]]

## 
## [[12]]

## 
## [[13]]

## 
## [[14]]

## 
## [[15]]

## 
## [[16]]

## 
## [[17]]

## 
## [[18]]

## 
## [[19]]

## 
## [[20]]

## 
## [[21]]

## 
## [[22]]

## 
## [[23]]

## 
## [[24]]

## 
## [[25]]

## 
## [[26]]

## 
## [[27]]

## 
## [[28]]

## 
## [[29]]

## 
## [[30]]

## 
## [[31]]

## 
## [[32]]

## 
## [[33]]

## 
## [[34]]

## 
## [[35]]

# dev.off()
# pdf(file = "Figures/Biomarker_survial_examination_Voom-SNM_Filter_Stringent.pdf",height = 5,width = 6)
p_stringent[[1]]
## [[1]]
## NULL
## 
## [[2]]
## NULL
## 
## [[3]]
## NULL
## 
## [[4]]
## NULL
## 
## [[5]]
## NULL
## 
## [[6]]
## NULL
## 
## [[7]]

## 
## [[8]]
## NULL
## 
## [[9]]

## 
## [[10]]
## NULL
## 
## [[11]]
## NULL
## 
## [[12]]
## NULL
## 
## [[13]]
## NULL
## 
## [[14]]
## NULL
## 
## [[15]]
## NULL
## 
## [[16]]
## NULL
## 
## [[17]]
## NULL
## 
## [[18]]

# dev.off()


# combine the cox results
df_cox_without <- p_without[[2]]
df_cox_likely <- p_likely[[2]]
df_cox_PC <- p_PC[[2]]
df_cox_putative <- p_putative[[2]]

df_cox_without$genus <- rownames(df_cox_without)
df_cox_likely$genus <- rownames(df_cox_likely)
df_cox_PC$genus <- rownames(df_cox_PC)
df_cox_putative$genus <- rownames(df_cox_putative)

df_cox_without_s <- df_cox_without %>% dplyr::select(c("genus" , "exp(coef)"), "Pr(>|z|)") %>% setNames(c("genus", "HR_without", "pvalue_without"))
df_cox_likely_s <- df_cox_likely %>% dplyr::select(c("genus" , "exp(coef)"), "Pr(>|z|)") %>% setNames(c("genus", "HR_likely", "pvalue_likely"))
df_cox_PC_s <- df_cox_PC %>% dplyr::select(c("genus" , "exp(coef)"), "Pr(>|z|)") %>% setNames(c("genus", "HR_PC", "pvalue_PC"))
df_cox_putative_s <- df_cox_putative %>% dplyr::select(c("genus" , "exp(coef)"), "Pr(>|z|)") %>% setNames(c("genus", "HR_putative", "pvalue_putative"))

df_cox_combine <- Reduce(function(x,y){merge(x,y,by="genus",all=TRUE)},
                         list(df_cox_without_s, df_cox_likely_s, df_cox_PC_s, df_cox_putative_s))
df_cox_combine$names <- str_extract(df_cox_combine$genus, "g__.+")
  
df_cox_combine <- df_cox_combine %>% remove_rownames() %>% column_to_rownames(var = "names")
  
df_HR_values <- df_cox_combine[,grep("HR",names(df_cox_combine))]
df_pvalues <- df_cox_combine[,grep("pvalue",names(df_cox_combine))]

# pdf(file = "Figures/Heatmap_Hazard_Ration_35_biomarkers.pdf",height = 8,width = 6)
Heatmap(as.matrix(df_HR_values), name = "Hazard Ratio", 
        col = colorRamp2(c(0, 1, max(df_HR_values)),c("#0072B5CC", "#FFFFFF", "#E18727CC")), column_dend_height = unit(10, "mm"),
        clustering_distance_rows = "euclidean",
        clustering_method_rows = "complete",
        show_row_dend = FALSE,
        show_column_dend = FALSE,
        row_names_gp = gpar(fontsize=10),
        column_names_gp = gpar(fontsize=12),
        cluster_columns = FALSE,
        cluster_rows = TRUE,
        row_title_side = "left",row_dend_side="left",
        row_names_side = "left", column_names_rot = 45,
        cell_fun = function(j, i, x, y, w, h, fill) {
          if(df_pvalues[i, j] < 0.001) {
            grid.text("***", x, y)
          } else if(df_pvalues[i, j] < 0.01) {
            grid.text("**", x, y)
          } else if(df_pvalues[i, j] < 0.05) {
            grid.text("*", x, y)
          }
        })

# dev.off()

write.csv(df_cox_combine, file = "../Tables/Cox_35_microbial_sigantures.csv", row.names = TRUE)
# save(list = ls(all.names = TRUE), file = "RData/06.ACC_Microbial_Feature_TWO_Clusters.RData", envir = .GlobalEnv)